Fixed overwriting of wrapper command

Fixed "WrapperCommand" setting being overwritten by the value of "PreLaunchCommand".
This commit is contained in:
iambob314 2015-09-05 19:39:13 -04:00
parent 6496c65285
commit 6148023ad6

View File

@ -119,7 +119,7 @@ void InstanceSettingsPage::applySettings()
if (custcmd)
{
m_settings->set("PreLaunchCommand", ui->preLaunchCmdTextBox->text());
m_settings->set("WrapperCommand", ui->preLaunchCmdTextBox->text());
m_settings->set("WrapperCommand", ui->wrapperCmdTextBox->text());
m_settings->set("PostExitCommand", ui->postExitCmdTextBox->text());
}
else