1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

Formatting fix

This commit is contained in:
Ivan Savenko 2022-12-28 18:04:27 +02:00
parent 5f4a998435
commit df3d62c5bc
2 changed files with 2 additions and 4 deletions

View File

@ -163,7 +163,6 @@ QVariant CModListModel::headerData(int section, Qt::Orientation orientation, int
void CModListModel::reloadRepositories()
{
//emit headerDataChanged(Qt::Horizontal, 0, -1 );
beginResetModel();
endResetModel();
}

View File

@ -87,7 +87,6 @@ void CSettingsView::loadSettings()
ui->comboBoxFullScreen->setDisabled(true);
#else
ui->comboBoxFullScreen->setCurrentIndex(settings["video"]["fullscreen"].Bool());
//ui->checkBoxFullScreen->setChecked(settings["video"]["realFullscreen"].Bool());
#endif
ui->comboBoxFriendlyAI->setCurrentText(QString::fromStdString(settings["server"]["friendlyAI"].String()));
@ -209,8 +208,8 @@ void CSettingsView::on_comboBoxFullScreen_currentIndexChanged(int index)
{
Settings nodeFullscreen = settings.write["video"]["fullscreen"];
Settings nodeRealFullscreen = settings.write["video"]["realFullscreen"];
nodeFullscreen->Bool() = index != 0;
nodeFullscreen->Bool() = index == 2;
nodeFullscreen->Bool() = (index != 0);
nodeRealFullscreen->Bool() = (index == 2);
}
void CSettingsView::on_comboBoxAutoCheck_currentIndexChanged(int index)