From: Carl Hetherington Date: Tue, 7 Mar 2023 01:04:37 +0000 (+0100) Subject: Fix missing scrollbar in the audio tab on macOS/Windows (#2480). X-Git-Tag: v2.16.47 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=21db1bc7fbe778847e4dc2a7d6858cb6b43bac27;ds=sidebyside Fix missing scrollbar in the audio tab on macOS/Windows (#2480). --- diff --git a/src/wx/content_sub_panel.cc b/src/wx/content_sub_panel.cc index 4fe378bf2..6bbc9a51f 100644 --- a/src/wx/content_sub_panel.cc +++ b/src/wx/content_sub_panel.cc @@ -83,6 +83,7 @@ ContentSubPanel::layout () GetViewStart (&x, &y); Scroll (0, 0); _sizer->Layout (); + _sizer->FitInside(this); Scroll (x, y); }