Skip to content

Commit 099e4b9

Browse files
committed
Set AA_EnableHighDpiScaling attribute early
Qt docs: This attribute must be set before QGuiApplication is constructed.
1 parent 413e438 commit 099e4b9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/qt/bitcoin.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -436,16 +436,17 @@ int GuiMain(int argc, char* argv[])
436436
Q_INIT_RESOURCE(bitcoin);
437437
Q_INIT_RESOURCE(bitcoin_locale);
438438

439-
BitcoinApplication app(*node, argc, argv);
440439
// Generate high-dpi pixmaps
441440
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
442441
#if QT_VERSION >= 0x050600
443-
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
442+
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
444443
#endif
445444
#ifdef Q_OS_MAC
446445
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
447446
#endif
448447

448+
BitcoinApplication app(*node, argc, argv);
449+
449450
// Register meta types used for QMetaObject::invokeMethod
450451
qRegisterMetaType< bool* >();
451452
// Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType)

0 commit comments

Comments
 (0)