| 36 | } |
| 37 | |
| 38 | void SettingsGeneralControl::loadSettings() |
| 39 | { |
| 40 | mGridStep = SettingsManager::getInstance().getValue<int>("Settings/GridStep"); |
| 41 | mGridEdit->setCaption(MyGUI::utility::toString(mGridStep)); |
| 42 | mSaveLastTexture->setStateSelected(SettingsManager::getInstance().getValue<bool>("Settings/SaveLastTexture")); |
| 43 | setLanguageValue(SettingsManager::getInstance().getValue("Settings/InterfaceLanguage")); |
| 44 | } |
| 45 | |
| 46 | void SettingsGeneralControl::saveSettings() |
| 47 | { |
nothing calls this directly
no test coverage detected