summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/dcp_panel.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index 96b4b3cb5..c61e8fea1 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -322,8 +322,7 @@ DCPPanel::frame_rate_choice_changed()
_film->set_video_frame_rate(
boost::lexical_cast<int>(
wx_to_std(_frame_rate_choice->GetString(*_frame_rate_choice->get()))
- ),
- true
+ )
);
}
@@ -762,7 +761,7 @@ DCPPanel::best_frame_rate_clicked()
return;
}
- _film->set_video_frame_rate(_film->best_video_frame_rate());
+ _film->set_video_frame_rate(_film->best_video_frame_rate(), false);
}