Disable verbose when calling rawtherapee -v/h

This commit is contained in:
heckflosse 2018-05-01 15:46:10 +02:00
parent eec33292db
commit a84ce6240a

View File

@ -514,15 +514,6 @@ int main (int argc, char **argv)
options.rtSettings.lensfunDbDirectory = LENSFUN_DB_PATH; options.rtSettings.lensfunDbDirectory = LENSFUN_DB_PATH;
#endif #endif
Glib::ustring fatalError;
try {
Options::load();
} catch (Options::Error &e) {
fatalError = e.get_msg();
}
#ifdef WIN32 #ifdef WIN32
bool consoleOpened = false; bool consoleOpened = false;
@ -600,6 +591,14 @@ int main (int argc, char **argv)
#endif #endif
Glib::ustring fatalError;
try {
Options::load();
} catch (Options::Error &e) {
fatalError = e.get_msg();
}
if (gimpPlugin) { if (gimpPlugin) {
if (!Glib::file_test (argv1, Glib::FILE_TEST_EXISTS) || Glib::file_test (argv1, Glib::FILE_TEST_IS_DIR)) { if (!Glib::file_test (argv1, Glib::FILE_TEST_EXISTS) || Glib::file_test (argv1, Glib::FILE_TEST_IS_DIR)) {
printf ("Error: argv1 doesn't exist\n"); printf ("Error: argv1 doesn't exist\n");