summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-11-06 01:07:44 +0000
committerCarl Hetherington <cth@carlh.net>2015-11-06 01:07:44 +0000
commitaedaebb9a265128110085d3ca0ad5604409f0ddb (patch)
treefcb50bd527ec0966b92ff77af7bafe324dbdd527 /src
parent63643372fea87ee99b87f3a3f5cd434eedb60925 (diff)
Fix slow update of DCP frame rate spinner.
Diffstat (limited to 'src')
-rw-r--r--src/wx/dcp_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index 4190526d7..3fc137b3f 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -357,7 +357,7 @@ DCPPanel::film_changed (int p)
checked_set (_frame_rate_choice, -1);
}
- _frame_rate_spin->SetValue (_film->video_frame_rate ());
+ checked_set (_frame_rate_spin, _film->video_frame_rate ());
_best_frame_rate->Enable (_film->best_video_frame_rate () != _film->video_frame_rate ());
break;