summaryrefslogtreecommitdiff
path: root/src/wx/audio_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-07-09 00:30:02 +0200
committerCarl Hetherington <cth@carlh.net>2021-07-09 00:30:02 +0200
commit8ccbe70f3c2f5db9e88978a98f3ad5735ece07ab (patch)
tree13afe8aefd398bff1d87ff09f729ef7bdee05b60 /src/wx/audio_panel.cc
parentcf7b5fd94e50f740ab93f52343610d01c80ac6d5 (diff)
Fix strange layout problems with the content sub panels (#2059).
It seems that if Layout() is called on a sizer inside a wxScrolledWindow when that window is scrolled, things go wrong. Work around this by wrapping calls to Layout().
Diffstat (limited to 'src/wx/audio_panel.cc')
-rw-r--r--src/wx/audio_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc
index a77922ed2..732468c84 100644
--- a/src/wx/audio_panel.cc
+++ b/src/wx/audio_panel.cc
@@ -218,7 +218,7 @@ AudioPanel::film_content_changed (int property)
}
setup_description ();
setup_peak ();
- _sizer->Layout ();
+ layout ();
} else if (property == AudioContentProperty::GAIN) {
setup_peak ();
} else if (property == DCPContentProperty::REFERENCE_AUDIO) {