mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix Change Langauge
This commit is contained in:
parent
1982ee2674
commit
e7a7b596eb
@ -303,6 +303,7 @@ void optionExit(int exitCode, QString error) {
|
|||||||
--help Displays this menu and exits.
|
--help Displays this menu and exits.
|
||||||
--hires Enables high Resolution
|
--hires Enables high Resolution
|
||||||
--hiresoff Disables high Resolution
|
--hiresoff Disables high Resolution
|
||||||
|
-l or --nop internal call to main from OSCAR.
|
||||||
)" );
|
)" );
|
||||||
exit (exitCode);
|
exit (exitCode);
|
||||||
}
|
}
|
||||||
@ -400,6 +401,8 @@ int main(int argc, char *argv[]) {
|
|||||||
for (int i = 1; i < args.size(); i++) {
|
for (int i = 1; i < args.size(); i++) {
|
||||||
if ((args[i] == "--language") || (args[i] == "--l") ) {
|
if ((args[i] == "--language") || (args[i] == "--l") ) {
|
||||||
settings.setValue(LangSetting,"");
|
settings.setValue(LangSetting,"");
|
||||||
|
} else if ( (args[i] == "-l") || (args[i] == "--nop")){
|
||||||
|
// do nothing. internal call to change language.
|
||||||
} else if (args[i] == "-p") {
|
} else if (args[i] == "-p") {
|
||||||
QThread::msleep(1000);
|
QThread::msleep(1000);
|
||||||
} else if (args[i] == "--profile") {
|
} else if (args[i] == "--profile") {
|
||||||
|
Loading…
Reference in New Issue
Block a user