diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2021-06-22 19:19:50 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2021-06-22 19:24:42 +0000 |
commit | c901d4d8ce7949276da57eacb82b1a3ce40cac27 (patch) | |
tree | 8288a2cc71335012d0c290c576f761b7a1e39dd7 /src/qt/guiutil.cpp | |
parent | 327e2691f6e0498aa868af965bb4a951c5be17c5 (diff) |
GUI: Enable palette change adaptation on all platforms
Diffstat (limited to 'src/qt/guiutil.cpp')
-rw-r--r-- | src/qt/guiutil.cpp | 2 |
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); } |