From 21db1bc7fbe778847e4dc2a7d6858cb6b43bac27 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 7 Mar 2023 02:04:37 +0100 Subject: [PATCH] Fix missing scrollbar in the audio tab on macOS/Windows (#2480). --- src/wx/content_sub_panel.cc | 1 + 1 file changed, 1 insertion(+) 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); } -- 2.30.2