diff options
author | Miguel Herranz <miguel@ipglider.org> | 2019-04-07 21:33:35 +0200 |
---|---|---|
committer | Miguel Herranz <miguel@ipglider.org> | 2020-02-05 07:13:01 +0100 |
commit | f5a3a5b9ab362c58fa424261f313aa9cf46d2a98 (patch) | |
tree | 37537dda08fca62cb82891eb740b4be5595ef9b2 /src/qt/guiutil.h | |
parent | a064e005fa6b2b9f2c7f01e45a04a4d740f4605d (diff) |
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/guiutil.h')
-rw-r--r-- | src/qt/guiutil.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 05e73cc5f0..406ce05056 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -124,6 +124,9 @@ namespace GUIUtil // Activate, show and raise the widget void bringToFront(QWidget* w); + // Set shortcut to close window + void handleCloseWindowShortcut(QWidget* w); + // Open debug.log void openDebugLogfile(); |