From 3599fcaae545c4945d6cc480e5728a8ab815f106 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Tue, 19 Nov 2019 22:57:48 +0100 Subject: [PATCH] Fix help for --window-width and --window-height The default value is 0 (automatic), not -1. --- app/src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main.c b/app/src/main.c index da0d2074..04be1ab0 100644 --- a/app/src/main.c +++ b/app/src/main.c @@ -127,11 +127,11 @@ static void usage(const char *arg0) { "\n" " --window-width value\n" " Set the initial window width.\n" - " Default is -1 (automatic).\n" + " Default is 0 (automatic).\n" "\n" " --window-height value\n" " Set the initial window width.\n" - " Default is -1 (automatic).\n" + " Default is 0 (automatic).\n" "\n" "Shortcuts:\n" "\n"