aboutsummaryrefslogtreecommitdiff
path: root/src/qt/guiutil.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2021-06-22 19:24:35 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2021-06-22 19:24:44 +0000
commit9d5bf6bf01af40a9684f1b1f06a8df4aaf36b8f3 (patch)
tree47ed2d1537de527dd735e1f6458dc9050971bf63 /src/qt/guiutil.cpp
parentc901d4d8ce7949276da57eacb82b1a3ce40cac27 (diff)
downloadbitcoin-9d5bf6bf01af40a9684f1b1f06a8df4aaf36b8f3.tar.xz
GUI: Always call parent changeEvent handler
Diffstat (limited to 'src/qt/guiutil.cpp')
-rw-r--r--src/qt/guiutil.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp
index 4ccfa5deef..ecdfce2f5a 100644
--- a/src/qt/guiutil.cpp
+++ b/src/qt/guiutil.cpp
@@ -812,6 +812,7 @@ void ThemedLabel::changeEvent(QEvent* e)
if (e->type() == QEvent::PaletteChange) {
updateThemedPixmap();
}
+
QLabel::changeEvent(e);
}