diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-22 01:17:45 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-22 01:17:45 +0100 |
| commit | 7b16a669e797cc9d876dfd31eef92905d9121e85 (patch) | |
| tree | c85347d3978511c40b59b587fa76e8dce109f2da /src/lib/film.cc | |
| parent | 34f7a41b24c4fa61b759f2e4b511111268758f71 (diff) | |
Fix strange default of user_explicit with set_video_frame_rate.
Diffstat (limited to 'src/lib/film.cc')
| -rw-r--r-- | src/lib/film.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc index 12ab7c8a2..41944677c 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -1357,7 +1357,7 @@ Film::signal_change(ChangeType type, FilmProperty p) if (p == FilmProperty::CONTENT) { if (!_user_explicit_video_frame_rate) { - set_video_frame_rate(best_video_frame_rate()); + set_video_frame_rate(best_video_frame_rate(), false); } } |
