summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/controls.cc12
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 ();
+ }
}
}