summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-22 01:17:45 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-22 01:17:45 +0100
commit7b16a669e797cc9d876dfd31eef92905d9121e85 (patch)
treec85347d3978511c40b59b587fa76e8dce109f2da /src/wx
parent34f7a41b24c4fa61b759f2e4b511111268758f71 (diff)
Fix strange default of user_explicit with set_video_frame_rate.
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);
}