aboutsummaryrefslogtreecommitdiff
path: root/src/qt/modaloverlay.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-02-12 22:57:56 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-04-29 21:45:17 +0300
commit4fc1df41d570ab631a8b47e4427a0b84305e37d1 (patch)
treed71c54c403a8b7a83b741c2ca08d3f741b784791 /src/qt/modaloverlay.h
parentd4fc9aeb8b6a66d8d40ab93547c8b1390458d638 (diff)
downloadbitcoin-4fc1df41d570ab631a8b47e4427a0b84305e37d1.tar.xz
qt: Track QEvent::Resize during animation
Diffstat (limited to 'src/qt/modaloverlay.h')
-rw-r--r--src/qt/modaloverlay.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/modaloverlay.h b/src/qt/modaloverlay.h
index 076ec30b58..28f4d4f720 100644
--- a/src/qt/modaloverlay.h
+++ b/src/qt/modaloverlay.h
@@ -6,6 +6,7 @@
#define BITCOIN_QT_MODALOVERLAY_H
#include <QDateTime>
+#include <QPropertyAnimation>
#include <QWidget>
//! The required delta of headers to the estimated number of available headers until we show the IBD progress
@@ -45,6 +46,7 @@ private:
QVector<QPair<qint64, double> > blockProcessTime;
bool layerIsVisible;
bool userClosed;
+ QPropertyAnimation m_animation;
void UpdateHeaderSyncLabel();
};