diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-03-26 10:58:48 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-03-26 10:58:48 -0700 |
commit | e9f9282bde3292b4df35a245b9fbd9d13020a8c6 (patch) | |
tree | 389321824ea61ff7d2af5a0ab9f4ee1b1c7d9fbe /src/qt | |
parent | 01a196e08db49d83cf6c5abd8a799c56dcfef503 (diff) | |
parent | 4004b9a40bad54293709e9b18745156b7099ffb7 (diff) |
Merge pull request #988 from Diapolo/URL-Handling
show Window, when user is clicking bitcoin: link
Diffstat (limited to 'src/qt')
-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) |