From 14ea641b0064cd7072850bef4d089d12fdd0767c Mon Sep 17 00:00:00 2001 From: arza Date: Mon, 30 Oct 2023 15:34:21 +0200 Subject: [PATCH] fix negative offset for --move --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index ede1580..af15d1c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -68,6 +68,7 @@ fn main() { .short("m") .long("move") .value_name("OFFSET") + .allow_hyphen_values(true) .help("Move all subtitles in time (e.g 12:00.15 or -0:44)"), ) .arg(clap::Arg::with_name("automove")