diff options
| author | Hennadii Stepanov <[email protected]> | 2019-06-20 21:24:22 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2019-06-20 21:24:22 +0300 |
| commit | 099e4b9ad3d9967051d5c3d45c6315d1b30fea05 (patch) | |
| tree | c38c3acc6751d167685ce8ff2518819192ff46b7 /src/qt/bitcoin.cpp | |
| parent | Merge #16243: doc: Remove travis badge from readme (diff) | |
| download | discoin-099e4b9ad3d9967051d5c3d45c6315d1b30fea05.tar.xz discoin-099e4b9ad3d9967051d5c3d45c6315d1b30fea05.zip | |
Set AA_EnableHighDpiScaling attribute early
Qt docs: This attribute must be set before QGuiApplication is
constructed.
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 0c232f89f..289985c82 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -436,16 +436,17 @@ int GuiMain(int argc, char* argv[]) Q_INIT_RESOURCE(bitcoin); Q_INIT_RESOURCE(bitcoin_locale); - BitcoinApplication app(*node, argc, argv); // Generate high-dpi pixmaps QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); #if QT_VERSION >= 0x050600 - QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling); + QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif #ifdef Q_OS_MAC QApplication::setAttribute(Qt::AA_DontShowIconsInMenus); #endif + BitcoinApplication app(*node, argc, argv); + // Register meta types used for QMetaObject::invokeMethod qRegisterMetaType< bool* >(); // Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType) |