summaryrefslogtreecommitdiffstats
path: root/application/pages
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@users.noreply.github.com>2015-09-06 07:26:11 +0200
committerPetr Mrázek <peterix@users.noreply.github.com>2015-09-06 07:26:11 +0200
commit16df6c16f315aaa30ea844c8ea90ad425f9d4c89 (patch)
treefcf517dbfad2a0738bd6cf6122e41584801ac986 /application/pages
parent6496c65285772977741647178681354da2331a84 (diff)
parent6148023ad632963596163a28b9074ad0cd52c56d (diff)
downloadMultiMC-16df6c16f315aaa30ea844c8ea90ad425f9d4c89.tar
MultiMC-16df6c16f315aaa30ea844c8ea90ad425f9d4c89.tar.gz
MultiMC-16df6c16f315aaa30ea844c8ea90ad425f9d4c89.tar.lz
MultiMC-16df6c16f315aaa30ea844c8ea90ad425f9d4c89.tar.xz
MultiMC-16df6c16f315aaa30ea844c8ea90ad425f9d4c89.zip
Merge pull request #1225 from iambob314/patch-1
Fixed overwriting of wrapper command
Diffstat (limited to 'application/pages')
-rw-r--r--application/pages/InstanceSettingsPage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/pages/InstanceSettingsPage.cpp b/application/pages/InstanceSettingsPage.cpp
index c651fcbd..91b997d6 100644
--- a/application/pages/InstanceSettingsPage.cpp
+++ b/application/pages/InstanceSettingsPage.cpp
@@ -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