<property name="checkable">
<bool>true</bool>
</property>
+ <property name="checked">
+ <bool>false</bool>
+ </property>
<layout class="QGridLayout" name="gridLayout" columnstretch="1,2,0">
<item row="0" column="0">
<widget class="QLabel" name="label_9">
m_ui->commandLineArgs->setPlainText(settings.value("additional-args").toString());
+ m_ui->mpBox->setChecked(settings.value("mp-enabled").toBool());
m_ui->mpCallsign->setText(settings.value("mp-callsign").toString());
// don't restore MP server here, we do it after a refresh
m_doRestoreMPServer = true;
settings.setValue("mp-callsign", m_ui->mpCallsign->text());
settings.setValue("mp-server", m_ui->mpServerCombo->currentData());
+ settings.setValue("mp-enabled", m_ui->mpBox->isChecked());
}
void QtLauncher::setEnableDisableOptionFromCheckbox(QCheckBox* cbox, QString name) const