diff -r 92af50454cf2 -r 8054d9d775fd QTfrontend/gameuiconfig.cpp --- a/QTfrontend/gameuiconfig.cpp Fri Oct 11 11:55:31 2013 +0200 +++ b/QTfrontend/gameuiconfig.cpp Fri Oct 11 17:43:13 2013 +0200 @@ -139,9 +139,14 @@ Form->ui.pageOptions->CBShowFPS->setChecked(value("fps/show", false).toBool()); Form->ui.pageOptions->fpsedit->setValue(value("fps/limit", 27).toUInt()); - Form->ui.pageOptions->CBAltDamage->setChecked(value("misc/altdamage", false).toBool()); + Form->ui.pageOptions->CBAltDamage->setChecked(value("misc/altdamage", true).toBool()); Form->ui.pageOptions->CBNameWithDate->setChecked(value("misc/appendTimeToRecords", false).toBool()); + Form->ui.pageOptions->CBTeamTag->setChecked(value("misc/teamtag", true).toBool()); + Form->ui.pageOptions->CBHogTag->setChecked(value("misc/hogtag", true).toBool()); + Form->ui.pageOptions->CBHealthTag->setChecked(value("misc/healthtag", true).toBool()); + Form->ui.pageOptions->CBTagOpacity->setChecked(value("misc/tagopacity", false).toBool()); + #ifdef SPARKLE_ENABLED Form->ui.pageOptions->CBAutoUpdate->setChecked(value("misc/autoUpdate", true).toBool()); #endif @@ -280,6 +285,12 @@ setValue("fps/limit", Form->ui.pageOptions->fpsedit->value()); setValue("misc/altdamage", isAltDamageEnabled()); + + setValue("misc/teamtag", Form->ui.pageOptions->CBTeamTag->isChecked()); + setValue("misc/hogtag", Form->ui.pageOptions->CBHogTag->isChecked()); + setValue("misc/healthtag", Form->ui.pageOptions->CBHealthTag->isChecked()); + setValue("misc/tagopacity",Form->ui.pageOptions->CBTagOpacity->isChecked()); + setValue("misc/appendTimeToRecords", appendDateTimeToRecordName()); setValue("misc/locale", language());