summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-31 00:56:03 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-31 00:56:03 +0100
commit65f0df0142bb21c3bdc8ff755a7aa38ae187ed72 (patch)
tree3b5be5de9aef2e2088c43d3c75e54fb3138cbec0 /src
parent33c49e1d7275806ab6ebf23bfe1e9234b5e7cced (diff)
Fix silly 100 frame limit on trim.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc
index a21782a6f..6456ae247 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -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);
}