aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2019-04-27 19:05:15 -0600
committerMelody Horn <melody@boringcactus.com>2019-04-27 19:05:15 -0600
commit47438fc4e0e400214458132eee455eb325b68181 (patch)
tree33236da4bb3331710cc4921e2e12643c819a8284
parent23132238f9baa9a061a445e2d786a32790aa60a7 (diff)
downloadvidslice-47438fc4e0e400214458132eee455eb325b68181.tar.gz
vidslice-47438fc4e0e400214458132eee455eb325b68181.zip
use -to as an input option to match -ss as input
-rw-r--r--options.py2
1 files changed, 1 insertions, 1 deletions
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())]