aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2019-10-01 09:07:49 +0800
committerfanquake <fanquake@gmail.com>2019-10-01 10:10:22 +0800
commitb0e268d2f6ac9b80247b5dab353794ba6b3c2828 (patch)
treec36f9d91daaa7b353571543073e01ea8a3249f5d /src
parent696b5eb1799d9ac7d6dd72134ac30df87e9df222 (diff)
parent3eea6a8f2686352a0fd868fee6af42ef1283bdda (diff)
downloadbitcoin-b0e268d2f6ac9b80247b5dab353794ba6b3c2828.tar.xz
Merge #16969: refactor: Remove Qt function to disable menu icons on macOS
3eea6a8f2686352a0fd868fee6af42ef1283bdda refactor: Remove Qt function to disable menu icons on macOS (Emil Engler) Pull request description: As menu icons were removed in #16612, this removes an unnecessary function for macOS Could this get into v0.19.0? ACKs for top commit: jonasschnelli: utACK 3eea6a8f2686352a0fd868fee6af42ef1283bdda promag: ACK 3eea6a8f2686352a0fd868fee6af42ef1283bdda. fanquake: ACK 3eea6a8f2686352a0fd868fee6af42ef1283bdda Tree-SHA512: b3f2f5ed1141f546351433160e27d95dad914739e89dd3438d11756ca5aa41501f0f08345f2b50415717d88517894d73c1065b17f1bda38132374cc58c08df54
Diffstat (limited to 'src')
-rw-r--r--src/qt/bitcoin.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp
index 46f8deee57..ec6075c8fb 100644
--- a/src/qt/bitcoin.cpp
+++ b/src/qt/bitcoin.cpp
@@ -436,9 +436,6 @@ int GuiMain(int argc, char* argv[])
#if QT_VERSION >= 0x050600
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#endif
-#ifdef Q_OS_MAC
- QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
-#endif
BitcoinApplication app(*node);