Merge pull request #1728 from Cockatrice/leematos-hidpi-support

Enable HiDpiPixmaps for Qt5
This commit is contained in:
Gavin Bisesi 2015-12-28 22:12:12 -05:00
commit 2bf998b7d3

View file

@ -215,7 +215,9 @@ int main(int argc, char *argv[])
ui.show();
qDebug("main(): ui.show() finished");
#if QT_VERSION > 0x050000
app.setAttribute(Qt::AA_UseHighDpiPixmaps);
#endif
app.exec();
}