aboutsummaryrefslogtreecommitdiff
path: root/src/qt/guiutil.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2021-06-22 19:19:50 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2021-06-22 19:24:42 +0000
commitc901d4d8ce7949276da57eacb82b1a3ce40cac27 (patch)
tree8288a2cc71335012d0c290c576f761b7a1e39dd7 /src/qt/guiutil.cpp
parent327e2691f6e0498aa868af965bb4a951c5be17c5 (diff)
downloadbitcoin-c901d4d8ce7949276da57eacb82b1a3ce40cac27.tar.xz
GUI: Enable palette change adaptation on all platforms
Diffstat (limited to 'src/qt/guiutil.cpp')
-rw-r--r--src/qt/guiutil.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp
index 393dca8ccd..4ccfa5deef 100644
--- a/src/qt/guiutil.cpp
+++ b/src/qt/guiutil.cpp
@@ -809,11 +809,9 @@ void ThemedLabel::setThemedPixmap(const QString& image_filename, int width, int
void ThemedLabel::changeEvent(QEvent* e)
{
-#ifdef Q_OS_MACOS
if (e->type() == QEvent::PaletteChange) {
updateThemedPixmap();
}
-#endif
QLabel::changeEvent(e);
}