summaryrefslogtreecommitdiff
path: root/src/wx/dcp_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-01-26 22:44:08 +0000
committerCarl Hetherington <cth@carlh.net>2019-01-26 22:44:08 +0000
commit078a0f98e3f741210be7f839292f41f28b6a403e (patch)
tree08d3e0a8eb93717ddd1ca1f969cff80e7c4ea48e /src/wx/dcp_panel.cc
parent755b9af051c73dae5fffbe613fc45d9fd4fbd08d (diff)
Suggest that DCP rates <= 30 are used unless the user explictly goes higher (#1441).
Diffstat (limited to 'src/wx/dcp_panel.cc')
-rw-r--r--src/wx/dcp_panel.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index 5ebd0989d..3defe75e4 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -307,9 +307,10 @@ DCPPanel::frame_rate_choice_changed ()
}
_film->set_video_frame_rate (
- boost::lexical_cast<int> (
- wx_to_std (_frame_rate_choice->GetString (_frame_rate_choice->GetSelection ()))
- )
+ boost::lexical_cast<int>(
+ wx_to_std(_frame_rate_choice->GetString(_frame_rate_choice->GetSelection()))
+ ),
+ true
);
}