diff options
| author | João Barbosa <[email protected]> | 2018-08-31 23:16:34 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2018-11-05 11:21:50 +0000 |
| commit | 6fc21aca6d5e16c3ece104fec8e5b3df116893b4 (patch) | |
| tree | 10da2109348e79681d3e0da7b7dbe5dba999a0f6 /src | |
| parent | qt: Add GUIUtil::bringToFront (diff) | |
| download | discoin-6fc21aca6d5e16c3ece104fec8e5b3df116893b4.tar.xz discoin-6fc21aca6d5e16c3ece104fec8e5b3df116893b4.zip | |
qt: Use GUIUtil::bringToFront where possible
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 26 | ||||
| -rw-r--r-- | src/qt/walletview.cpp | 8 |
2 files changed, 7 insertions, 27 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index de7153722..ec5c4bd49 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -667,10 +667,7 @@ void BitcoinGUI::aboutClicked() void BitcoinGUI::showDebugWindow() { - rpcConsole->showNormal(); - rpcConsole->show(); - rpcConsole->raise(); - rpcConsole->activateWindow(); + GUIUtil::bringToFront(rpcConsole); } void BitcoinGUI::showDebugWindowActivateConsole() @@ -1152,24 +1149,11 @@ void BitcoinGUI::showNormalIfMinimized(bool fToggleHidden) if(!clientModel) return; - // activateWindow() (sometimes) helps with keyboard focus on Windows - if (isHidden()) - { - show(); - activateWindow(); - } - else if (isMinimized()) - { - showNormal(); - activateWindow(); - } - else if (GUIUtil::isObscured(this)) - { - raise(); - activateWindow(); - } - else if(fToggleHidden) + if (!isHidden() && !isMinimized() && !GUIUtil::isObscured(this) && fToggleHidden) { hide(); + } else { + GUIUtil::bringToFront(this); + } } void BitcoinGUI::toggleHidden() diff --git a/src/qt/walletview.cpp b/src/qt/walletview.cpp index 053e95192..a61999234 100644 --- a/src/qt/walletview.cpp +++ b/src/qt/walletview.cpp @@ -292,9 +292,7 @@ void WalletView::usedSendingAddresses() if(!walletModel) return; - usedSendingAddressesPage->show(); - usedSendingAddressesPage->raise(); - usedSendingAddressesPage->activateWindow(); + GUIUtil::bringToFront(usedSendingAddressesPage); } void WalletView::usedReceivingAddresses() @@ -302,9 +300,7 @@ void WalletView::usedReceivingAddresses() if(!walletModel) return; - usedReceivingAddressesPage->show(); - usedReceivingAddressesPage->raise(); - usedReceivingAddressesPage->activateWindow(); + GUIUtil::bringToFront(usedReceivingAddressesPage); } void WalletView::showProgress(const QString &title, int nProgress) |