summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-03-13 15:49:06 +0100
committerCarl Hetherington <cth@carlh.net>2022-03-13 15:49:06 +0100
commit5e1851863503428293f461895af20f7c99cd7332 (patch)
treee952b8637776b5c067a32b04a03079fb8e6c7a9e
parent06df771b17b64228a696f06d6154aac0047158af (diff)
Fix sensitivity of custom scaled edit button.
-rw-r--r--src/wx/video_panel.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc
index 52c3b9229..ff249a7ac 100644
--- a/src/wx/video_panel.cc
+++ b/src/wx/video_panel.cc
@@ -702,6 +702,8 @@ VideoPanel::scale_fit_clicked ()
i->video->set_custom_ratio (optional<float>());
i->video->set_custom_size (optional<dcp::Size>());
}
+
+ setup_sensitivity ();
}
@@ -711,6 +713,8 @@ VideoPanel::scale_custom_clicked ()
if (!scale_custom_edit_clicked()) {
_scale_fit->SetValue (true);
}
+
+ setup_sensitivity ();
}