diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-03-26 10:58:48 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-03-26 10:58:48 -0700 |
| commit | e9f9282bde3292b4df35a245b9fbd9d13020a8c6 (patch) | |
| tree | 389321824ea61ff7d2af5a0ab9f4ee1b1c7d9fbe /src/qt | |
| parent | Merge pull request #974 from sipa/walletupgrade (diff) | |
| parent | make sure Window is shown when clicking bitcoin: Links to get user attention (diff) | |
| download | discoin-e9f9282bde3292b4df35a245b9fbd9d13020a8c6.tar.xz discoin-e9f9282bde3292b4df35a245b9fbd9d13020a8c6.zip | |
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 31f220b8a..7bce1286c 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) |