diff options
author | Matt Corallo <matt@bluematt.me> | 2011-12-13 14:00:21 -0500 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2011-12-13 15:29:17 -0500 |
commit | 7ca47cece7854a4efb4a8dcb68b93edbde1a76fb (patch) | |
tree | 50d59133f31d2baff8abc22aa41bbdb444186afc /src/qt/bitcoin.cpp | |
parent | 857aa73783a991e6d750c99988821585c1864e21 (diff) |
Fix status bar not displaying Alerts.
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 4aaad6bd2c..dd326a690f 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -91,6 +91,8 @@ void UIThreadCall(boost::function0<void> fn) void MainFrameRepaint() { + if(guiref) + QMetaObject::invokeMethod(guiref, "refreshStatusBar", Qt::QueuedConnection); } void InitMessage(const std::string &message) |