diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-12-04 20:57:25 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-12-04 20:57:57 +0100 |
commit | 4d955fc5824b1891ea082f5ebdfa5473e37323ca (patch) | |
tree | 49b756b31dcc6f9745c0132585dddc58f8b9876e /src/qt/guiutil.cpp | |
parent | 2efcfa5acfacb958973d9e8125e1d81f102e2dfd (diff) | |
parent | 042f9fa071fd76ab310cd47b73d0e620a7850660 (diff) |
Merge #9218: qt: Show progress overlay when clicking spinner icon
042f9fa qt: Show progress overlay when clicking spinner icon (Wladimir J. van der Laan)
827d9a3 qt: Replace NetworkToggleStatusBarControl with generic ClickableLabel (Wladimir J. van der Laan)
Diffstat (limited to 'src/qt/guiutil.cpp')
-rw-r--r-- | src/qt/guiutil.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 23f80ebb86..4806e41439 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -55,6 +55,7 @@ #include <QSettings> #include <QTextDocument> // for Qt::mightBeRichText #include <QThread> +#include <QMouseEvent> #if QT_VERSION < 0x050000 #include <QUrl> @@ -986,4 +987,10 @@ QString formateNiceTimeOffset(qint64 secs) } return timeBehindText; } + +void ClickableLabel::mousePressEvent(QMouseEvent *event) +{ + Q_EMIT clicked(event->pos()); +} + } // namespace GUIUtil |