aboutsummaryrefslogtreecommitdiff
path: root/src/qt/splashscreen.cpp
diff options
context:
space:
mode:
authorMiguel Herranz <miguel@ipglider.org>2019-04-07 21:33:35 +0200
committerMiguel Herranz <miguel@ipglider.org>2020-02-05 07:13:01 +0100
commitf5a3a5b9ab362c58fa424261f313aa9cf46d2a98 (patch)
tree37537dda08fca62cb82891eb740b4be5595ef9b2 /src/qt/splashscreen.cpp
parenta064e005fa6b2b9f2c7f01e45a04a4d740f4605d (diff)
downloadbitcoin-f5a3a5b9ab362c58fa424261f313aa9cf46d2a98.tar.xz
gui: Add close window shortcut
CMD+W/CTRL+W is the standard shortcut to close a window without exiting the program.
Diffstat (limited to 'src/qt/splashscreen.cpp')
-rw-r--r--src/qt/splashscreen.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp
index e19833019d..dc62f776b6 100644
--- a/src/qt/splashscreen.cpp
+++ b/src/qt/splashscreen.cpp
@@ -127,6 +127,8 @@ SplashScreen::SplashScreen(interfaces::Node& node, Qt::WindowFlags f, const Netw
subscribeToCoreSignals();
installEventFilter(this);
+
+ GUIUtil::handleCloseWindowShortcut(this);
}
SplashScreen::~SplashScreen()