mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Mac RestartApplication() fix #3
This commit is contained in:
parent
861ed166ca
commit
7413ff1322
@ -1154,9 +1154,11 @@ void MainWindow::RestartApplication(bool force_login)
|
|||||||
|
|
||||||
QStringList args;
|
QStringList args;
|
||||||
args << "-n"; // -n option is important, as it opens a new process
|
args << "-n"; // -n option is important, as it opens a new process
|
||||||
apppath+=" -p";
|
|
||||||
if (force_login) apppath+=" -l";
|
|
||||||
args << apppath;
|
args << apppath;
|
||||||
|
args << "--args";
|
||||||
|
args << "-p";
|
||||||
|
|
||||||
|
if (force_login) args << "-l";
|
||||||
// -p starts with 1 second delay, to give this process time to save..
|
// -p starts with 1 second delay, to give this process time to save..
|
||||||
|
|
||||||
if (QProcess::startDetached("/usr/bin/open",args)) {
|
if (QProcess::startDetached("/usr/bin/open",args)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user