summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-04-16 18:27:19 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-16 18:27:38 +0200
commit9763e70d6fcbaa30662e97b3132739445b0402b6 (patch)
tree135f784a32edf08e7a943a647a18858968b22058 /src
parent6c0d58aca6c51128ecc47aa6d585c1221fd55c3d (diff)
Fix sensitivity of playback controls on startup.
Diffstat (limited to 'src')
-rw-r--r--src/wx/standard_controls.cc1
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();
}