select first screen if none is in the setting

actorid
Sebastian Wick 12 years ago
parent a1fea97c3b
commit 14d074e3e7

@ -239,7 +239,9 @@ bool GraphicsPage::loadSettings()
QString resolution = width + QString(" x ") + height;
QString screen = mGraphicsSettings.value(QString("Video/screen"));
screenComboBox->setCurrentIndex(screenComboBox->findText(QString("Screen ") + screen));
int screenIndex = screenComboBox->findText(QString("Screen ") + screen);
if (screenIndex != -1)
screenComboBox->setCurrentIndex(screenIndex);
int resIndex = resolutionComboBox->findText(resolution, Qt::MatchStartsWith);

Loading…
Cancel
Save