diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-03-26 09:19:49 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-03-26 09:19:49 +0200 |
commit | 4004b9a40bad54293709e9b18745156b7099ffb7 (patch) | |
tree | 389321824ea61ff7d2af5a0ab9f4ee1b1c7d9fbe /src | |
parent | 01a196e08db49d83cf6c5abd8a799c56dcfef503 (diff) |
make sure Window is shown when clicking bitcoin: Links to get user attention
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/bitcoingui.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 31f220b8a9..7bce1286c7 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -733,6 +733,11 @@ void BitcoinGUI::handleURL(QString strURL) { gotoSendCoinsPage(); sendCoinsPage->handleURL(strURL); + + if(!isActiveWindow()) + activateWindow(); + + showNormalIfMinimized(); } void BitcoinGUI::setEncryptionStatus(int status) |