From 47438fc4e0e400214458132eee455eb325b68181 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Sat, 27 Apr 2019 19:05:15 -0600 Subject: use -to as an input option to match -ss as input --- options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.py b/options.py index e4ae452..2fc8078 100644 --- a/options.py +++ b/options.py @@ -255,7 +255,7 @@ class OptionsPanel(wx.Panel): new_start = new_end - new_duration input_opts += ['-ss', str(new_start)] if self.end_time.is_edit(): - output_opts += ['-to', str(self.end_time.get_final())] + input_opts += ['-to', str(self.end_time.get_final())] if self.duration.is_edit(): output_opts += ['-t', str(self.duration.get_final())] -- cgit v1.2.3