Fix silly 100 frame limit on trim.
[dcpomatic.git] / src / wx / film_editor.cc
index a21782a6f9da188530d9e4b472461e8cf363f19e..6456ae24785f92941910d2e9f3987878b84e825a 100644 (file)
@@ -350,8 +350,8 @@ FilmEditor::make_video_panel ()
        _right_crop->SetRange (0, 1024);
        _bottom_crop->SetRange (0, 1024);
        _still_duration->SetRange (1, 60 * 60);
-       _trim_start->SetRange (0, 100);
-       _trim_end->SetRange (0, 100);
+       _trim_start->SetRange (0, 24 * 60 * 60);
+       _trim_end->SetRange (0, 24 * 60 * 60);
        _j2k_bandwidth->SetRange (50, 250);
 }