diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-01-06 18:59:59 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-01-06 18:59:59 +0000 |
| commit | a8ca8dd8c3838f42c1dcd86e09901275271c298e (patch) | |
| tree | bae6380f1283094d6f332ef1cce3bbec250f4d95 /src | |
| parent | 3b58fc434bb6933c1429a922fd7f56e70712257a (diff) | |
Fix sensitivity of left/right selector when film 3D setting changes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/controls.cc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/wx/controls.cc b/src/wx/controls.cc index 01b689c9e..ef93b8597 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -388,9 +388,13 @@ Controls::film () const void Controls::film_change (ChangeType type, Film::Property p) { - if (type == CHANGE_TYPE_DONE && p == Film::CONTENT) { - setup_sensitivity (); - update_position_label (); - update_position_slider (); + if (type == CHANGE_TYPE_DONE) { + if (p == Film::CONTENT) { + setup_sensitivity (); + update_position_label (); + update_position_slider (); + } else if (p == Film::THREE_D) { + setup_sensitivity (); + } } } |
