diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-04-16 18:27:19 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-04-16 18:27:38 +0200 |
| commit | 9763e70d6fcbaa30662e97b3132739445b0402b6 (patch) | |
| tree | 135f784a32edf08e7a943a647a18858968b22058 | |
| parent | 6c0d58aca6c51128ecc47aa6d585c1221fd55c3d (diff) | |
Fix sensitivity of playback controls on startup.
| -rw-r--r-- | src/wx/standard_controls.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wx/standard_controls.cc b/src/wx/standard_controls.cc index 942c49fc4..d9b8c998b 100644 --- a/src/wx/standard_controls.cc +++ b/src/wx/standard_controls.cc @@ -38,6 +38,7 @@ StandardControls::StandardControls(wxWindow* parent, FilmViewer& viewer, bool ed { _button_sizer->Add (_play_button, 0, wxALL | wxALIGN_CENTER_VERTICAL, 2); _play_button->Bind (wxEVT_TOGGLEBUTTON, boost::bind(&StandardControls::play_clicked, this)); + setup_sensitivity(); } |
