Suggest that DCP rates <= 30 are used unless the user explictly goes higher (#1441).
[dcpomatic.git] / src / wx / dcp_panel.cc
index 5ebd0989d89801e4381011df6646955467060108..3defe75e4822b938f5dac5d6b40699fc54e2e937 100644 (file)
@@ -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
                );
 }