mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Save default profile when clicking on Play or Configure
--HG-- branch : develop
This commit is contained in:
parent
142155d8c8
commit
b62562c896
1 changed files with 10 additions and 2 deletions
|
@ -145,7 +145,11 @@ void CMainWindow::onPlayClicked()
|
|||
bool started = QProcess::startDetached(executable, arguments, server.getDirectory());
|
||||
|
||||
// define this profile as default one
|
||||
CConfigFile::getInstance()->setDefaultProfileIndex(profileIndex);
|
||||
if (started)
|
||||
{
|
||||
CConfigFile::getInstance()->setDefaultProfileIndex(profileIndex);
|
||||
CConfigFile::getInstance()->save();
|
||||
}
|
||||
}
|
||||
|
||||
void CMainWindow::onConfigureClicked()
|
||||
|
@ -174,7 +178,11 @@ void CMainWindow::onConfigureClicked()
|
|||
|
||||
bool started = QProcess::startDetached(executable, arguments);
|
||||
|
||||
CConfigFile::getInstance()->setDefaultProfileIndex(profileIndex);
|
||||
if (started)
|
||||
{
|
||||
CConfigFile::getInstance()->setDefaultProfileIndex(profileIndex);
|
||||
CConfigFile::getInstance()->save();
|
||||
}
|
||||
}
|
||||
|
||||
void CMainWindow::onProfiles()
|
||||
|
|
Loading…
Reference in a new issue