summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-03-07 02:04:37 +0100
committerCarl Hetherington <cth@carlh.net>2023-03-07 02:04:37 +0100
commit21db1bc7fbe778847e4dc2a7d6858cb6b43bac27 (patch)
tree089422e942fe8c3c2aa28a641e743cee7cbfca9e
parent28dc02d0b3759f37f66fed9a5f7e35d1c7c61aeb (diff)
Fix missing scrollbar in the audio tab on macOS/Windows (#2480).v2.16.47
-rw-r--r--src/wx/content_sub_panel.cc1
1 files changed, 1 insertions, 0 deletions
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);
}