From e828e7dc6d3a52f7a55cbb2771d7b75bfb4a9a36 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Sun, 31 Mar 2024 20:28:18 -0400 Subject: [PATCH] FIX main.cpp 'make exist option --profile work properly' --- oscar/main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oscar/main.cpp b/oscar/main.cpp index d176debf..fe51453e 100644 --- a/oscar/main.cpp +++ b/oscar/main.cpp @@ -296,7 +296,7 @@ void optionExit(int exitCode, QString error) { Help Menu Option Description -p Pauses execution for 1 second - --profile Name of profile. if name does not exist then uses last used profile. + --profile Name of profile. if name does not exist then uses profile tab. --l or --language Force language prompt --datadir Use folderName as Oscar Data folder. For relatve paths: /. If folder does not exist then prompts user. @@ -397,7 +397,7 @@ int main(int argc, char *argv[]) { // selection QDialog, which waits indefinitely for user input before MainWindow is constructed. bool force_data_dir = false; - QString load_profile = ""; + QString load_profile; // null profile means no --profile param for (int i = 1; i < args.size(); i++) { if ((args[i] == "--language") || (args[i] == "--l") ) { settings.setValue(LangSetting,""); @@ -645,6 +645,7 @@ int main(int argc, char *argv[]) { QString language = settings.value(LangSetting, "").toString(); AppSetting->setLanguage(language); + if (!load_profile.isEmpty()) AppSetting->setProfileName(load_profile); // Set fonts from preferences file qDebug() << "App font before Prefs setting" << QApplication::font();