[gnome-builder/wip/gtk4-port] libide/gui: add ctrl+w to close page containing focus
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/gtk4-port] libide/gui: add ctrl+w to close page containing focus
- Date: Fri, 3 Jun 2022 23:05:31 +0000 (UTC)
commit c13fd8fe7687052a9099436577bd03a7e1e4e505
Author: Christian Hergert <chergert redhat com>
Date: Fri Jun 3 16:05:26 2022 -0700
libide/gui: add ctrl+w to close page containing focus
src/libide/gui/gtk/keybindings.gsl | 4 ++++
src/libide/gui/gtk/keybindings.json | 1 +
2 files changed, 5 insertions(+)
---
diff --git a/src/libide/gui/gtk/keybindings.gsl b/src/libide/gui/gtk/keybindings.gsl
index 38ee3a353..32e6fbe30 100644
--- a/src/libide/gui/gtk/keybindings.gsl
+++ b/src/libide/gui/gtk/keybindings.gsl
@@ -25,6 +25,10 @@ def inGrid()
(focus != null) && (focus.get_ancestor(typeof(Ide.Grid)) != null)
end
+def inPage()
+ (focus != null) && (focus.get_ancestor(typeof(Ide.Page)) != null)
+end
+
def hasProject()
workbench.has_project()
end
diff --git a/src/libide/gui/gtk/keybindings.json b/src/libide/gui/gtk/keybindings.json
index d532078c4..7b87d715a 100644
--- a/src/libide/gui/gtk/keybindings.json
+++ b/src/libide/gui/gtk/keybindings.json
@@ -22,3 +22,4 @@
/* Workspace Actions */
{ "trigger" : "<Control>comma", "action" : "app.preferences", "phase" : "capture" },
{ "trigger" : "<Alt>comma", "action" : "workbench.configure", "phase" : "capture" },
+{ "trigger" : "<Control>w", "action" : "frame.close-page-or-frame", "when" : "inPage()", "phase" : "bubble"
},
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]