aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.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/rpcconsole.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/rpcconsole.cpp')
-rw-r--r--src/qt/rpcconsole.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp
index e1f783b0e5..be6de140e8 100644
--- a/src/qt/rpcconsole.cpp
+++ b/src/qt/rpcconsole.cpp
@@ -498,6 +498,8 @@ RPCConsole::RPCConsole(interfaces::Node& node, const PlatformStyle *_platformSty
consoleFontSize = settings.value(fontSizeSettingsKey, QFontInfo(QFont()).pointSize()).toInt();
clear();
+
+ GUIUtil::handleCloseWindowShortcut(this);
}
RPCConsole::~RPCConsole()