From: Carl Hetherington Date: Tue, 13 May 2014 22:07:37 +0000 (+0100) Subject: Remove 100fps limit when using "any DCP frame rate". X-Git-Tag: v2.0.48~551^2~200 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=efc8654faceec410649901ee534861904d11e432 Remove 100fps limit when using "any DCP frame rate". Reported-by: Noah Orozco --- diff --git a/ChangeLog b/ChangeLog index e9be3a6d1..349f370e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-05-13 Carl Hetherington + + * Remove artificial 100fps limit when using + "any" DCP frame rate. + 2014-05-12 Carl Hetherington * Version 1.69.5 released. diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 51bb1f534..ca638d8ae 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -219,6 +219,7 @@ FilmEditor::make_dcp_panel () _audio_channels->SetRange (0, MAX_DCP_AUDIO_CHANNELS); _j2k_bandwidth->SetRange (1, Config::instance()->maximum_j2k_bandwidth() / 1000000); + _frame_rate_spin->SetRange (1, 480); _resolution->Append (_("2K")); _resolution->Append (_("4K"));