aboutsummaryrefslogtreecommitdiff
path: root/src/qt
diff options
context:
space:
mode:
authorChun Kuan Lee <ken2812221@gmail.com>2018-04-17 00:19:13 +0800
committerChun Kuan Lee <ken2812221@gmail.com>2018-04-17 02:38:10 +0800
commit67bf2aa68eaa4502c8c11541e3f39b0372e95bf8 (patch)
tree18ba50f1b8418258945a5790199843b5b6276fa2 /src/qt
parent0d6992168c2bda85b18fda8f6dea08da433a0dc9 (diff)
downloadbitcoin-67bf2aa68eaa4502c8c11541e3f39b0372e95bf8.tar.xz
qt:Show the entire Window when double clicking on taskbar
Diffstat (limited to 'src/qt')
-rw-r--r--src/qt/bitcoingui.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp
index bfa8844a09..aed5374a7d 100644
--- a/src/qt/bitcoingui.cpp
+++ b/src/qt/bitcoingui.cpp
@@ -968,6 +968,11 @@ void BitcoinGUI::changeEvent(QEvent *e)
QTimer::singleShot(0, this, SLOT(hide()));
e->ignore();
}
+ else if((wsevt->oldState() & Qt::WindowMinimized) && !isMinimized())
+ {
+ QTimer::singleShot(0, this, SLOT(show()));
+ e->ignore();
+ }
}
}
#endif