From 10d066b1b9e392374f8d9bdeba59ae082cbd2409 Mon Sep 17 00:00:00 2001 From: VandewalleL <127893501+VandewalleL@users.noreply.github.com> Date: Tue, 23 Apr 2024 18:49:28 +0200 Subject: [PATCH] Clarify how multiple files can be loaded --- GUI/Qt/main.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI/Qt/main.cxx b/GUI/Qt/main.cxx index c40bbe67..a5504113 100644 --- a/GUI/Qt/main.cxx +++ b/GUI/Qt/main.cxx @@ -143,10 +143,10 @@ void usage(const char *progname) cout << "Image Options:" << endl; cout << " -g FILE : Load the main image from FILE" << endl; cout << " -s FILE [FILE+] : Load the segmentation image from FILE" << endl; - cout << " : (multiple files may be provided)" << endl; + cout << " : (multiple space separated files may be provided)" << endl; cout << " -l FILE : Load label descriptions from FILE" << endl; cout << " -o FILE [FILE+] : Load additional images from FILE" << endl; - cout << " : (multiple files may be provided)" << endl; + cout << " : (multiple space separated files may be provided)" << endl; cout << " -w FILE : Load workspace from FILE" << endl; cout << " : (-w cannot be mixed with -g,-s,-l,-o options)" << endl; cout << "Additional Options:" << endl;