Skip to content

Commit

Permalink
Fully fix #95116 for OS X non-Retina display
Browse files Browse the repository at this point in the history
Allow three thumbnails in a row to display in Start Center after scaling changes
  • Loading branch information
ZackTheCardshark authored and lasconic committed Feb 16, 2016
1 parent dd174b5 commit f121ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/startcenter.cpp
Expand Up @@ -154,7 +154,7 @@ void Startcenter::writeSettings(QSettings& settings)
void Startcenter::readSettings(QSettings& settings)
{
settings.beginGroup("Startcenter");
resize(settings.value("size", QSize(700, 570)).toSize());
resize(settings.value("size", QSize(720, 570)).toSize());
move(settings.value("pos", QPoint(200, 100)).toPoint());
settings.endGroup();
}
Expand Down

0 comments on commit f121ff0

Please sign in to comment.