From cb6105dcee40b6673fba859fd30ab649ad09eafc Mon Sep 17 00:00:00 2001 From: Cy Rossignol Date: Sun, 13 Jun 2021 12:21:57 -0500 Subject: [PATCH] Fix GUI display artifact in poll loading indicator The progress bar text peeked out from the bottom of the loading indicator and looks like a rendering artifact. --- src/qt/voting/polltab.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qt/voting/polltab.cpp b/src/qt/voting/polltab.cpp index e612d8dd4e..2058110a12 100644 --- a/src/qt/voting/polltab.cpp +++ b/src/qt/voting/polltab.cpp @@ -52,6 +52,7 @@ class LoadingBar : public QProgressBar , m_active(false) { setRange(0, MAX); + setTextVisible(false); setGraphicsEffect(&m_opacity_effect); hide();