mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
RestartApplication() Fix for Mac
This commit is contained in:
parent
a5c0cfa49b
commit
1ca78c3698
@ -189,9 +189,7 @@ void UpdaterWindow::ParseUpdateXML(QIODevice * dev)
|
||||
}
|
||||
if (!release || (VersionString() > release->version)) {
|
||||
mainwin->Notify("No updates were found for your platform",5000,"SleepyHead Updates");
|
||||
sh_delay(4000);
|
||||
close();
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
@ -518,7 +518,6 @@ void MainWindow::CheckForUpdates()
|
||||
void MainWindow::on_actionCheck_for_Updates_triggered()
|
||||
{
|
||||
UpdaterWindow *w=new UpdaterWindow(this);
|
||||
|
||||
w->checkForUpdates();
|
||||
|
||||
// if (PREF.Exists("Updates_LastChecked")) {
|
||||
@ -1154,7 +1153,9 @@ void MainWindow::RestartApplication(bool force_login)
|
||||
apppath=QApplication::instance()->applicationDirPath().section("/",0,-3);
|
||||
|
||||
QStringList args;
|
||||
args << "-n" << apppath << "-p"; // -n option is important, as it opens a new process
|
||||
args << "-n"; // -n option is important, as it opens a new process
|
||||
args << apppath << -p;
|
||||
|
||||
if (force_login) args << "-l";
|
||||
// -p starts with 1 second delay, to give this process time to save..
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user