From 0d7a8cc22b83b75ec0e12596a8704d11248b8e7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Lesimple?= Date: Mon, 14 Apr 2025 21:01:32 +0200 Subject: [PATCH] Add a notice about ignored command-line options in GUI mode --- src/dvdisaster.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dvdisaster.c b/src/dvdisaster.c index ec92a33..7553a0e 100644 --- a/src/dvdisaster.c +++ b/src/dvdisaster.c @@ -1074,6 +1074,9 @@ int main(int argc, char *argv[]) } } + /* Going to use the GUI, tell the user most command-line options are ignored as we're restoring the GUI prefs */ + PrintCLI(_("Using GUI mode: most command-line options are ignored. Look at the preferences in the GUI instead.\n")); + Closure->guiMode = TRUE; GuiReadDotfile(); GuiCreateMainWindow(&argc, &argv);