Fix missing scrollbar in the audio tab on macOS/Windows (#2480).
[dcpomatic.git] / src / wx / content_sub_panel.cc
index 0c775287ac69ab2ec5cd8e9b03c6033a4866ccfe..6bbc9a51fcae43a89ad9e785ec99e2242fb266cb 100644 (file)
 #include "lib/dcp_content.h"
 #include "lib/compose.hpp"
 #include "lib/log.h"
-#include "lib/warnings.h"
-DCPOMATIC_DISABLE_WARNINGS
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/notebook.h>
-DCPOMATIC_ENABLE_WARNINGS
+LIBDCP_ENABLE_WARNINGS
 
 
 using std::list;
@@ -83,6 +83,7 @@ ContentSubPanel::layout ()
        GetViewStart (&x, &y);
        Scroll (0, 0);
        _sizer->Layout ();
+       _sizer->FitInside(this);
        Scroll (x, y);
 }