Enable HiDpiPixmaps for Qt5

This commit is contained in:
Lee Matos 2015-12-28 22:03:38 -05:00 committed by Gavin Bisesi
parent c917a6c272
commit 8a6d63265f

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();
}