[gnome-builder/wip/gtk4-port: 894/1774] libide/gui: be explicit with boolean ops
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/gtk4-port: 894/1774] libide/gui: be explicit with boolean ops
- Date: Mon, 11 Jul 2022 22:31:27 +0000 (UTC)
commit 590a1ba9c628bae2b2dd3fbe17765ebc4250d8a6
Author: Christian Hergert <chergert redhat com>
Date: Fri May 6 12:03:20 2022 -0700
libide/gui: be explicit with boolean ops
These ops still need a bit of work in template-glib, so just be more
explicit until that stuff is fixed there.
src/libide/gui/gtk/keybindings.gsl | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
---
diff --git a/src/libide/gui/gtk/keybindings.gsl b/src/libide/gui/gtk/keybindings.gsl
index 27a79715d..e33818cff 100644
--- a/src/libide/gui/gtk/keybindings.gsl
+++ b/src/libide/gui/gtk/keybindings.gsl
@@ -14,45 +14,45 @@ require Template version "1.0"
require Vte version "3.91"
def inEditor()
- focus != null && typeof(focus).is_a(typeof(Ide.SourceView))
+ (focus != null) && typeof(focus).is_a(typeof(Ide.SourceView))
end
def inTerminal()
- focus != null && typeof(focus).is_a(typeof(Ide.Terminal))
+ (focus != null) && typeof(focus).is_a(typeof(Ide.Terminal))
end
def inGrid()
- focus != null && (focus.get_ancestor(typeof(Ide.Grid)) != null)
+ (focus != null) && (focus.get_ancestor(typeof(Ide.Grid)) != null)
end
def hasProject()
- workbench != null && workbench.has_project()
+ (workbench != null) && workbench.has_project()
end
def canEdit()
- workspace != null && typeof(workspace) != typeof(Ide.GreeterWorkspace)
+ (workspace != null) && typeof(workspace) != typeof(Ide.GreeterWorkspace)
end
def canSearch()
- workspace != null && typeof(workspace) != typeof(Ide.GreeterWorkspace)
+ (workspace != null) && typeof(workspace) != typeof(Ide.GreeterWorkspace)
end
def inPopover()
- focus != null && focus.get_ancestor(typeof(Gtk.Popover)) != null
+ (focus != null) && (focus.get_ancestor(typeof(Gtk.Popover)) != null)
end
def inSearch()
- focus != null && focus.get_ancestor(typeof(Ide.SearchPopover)) != null
+ (focus != null) && (focus.get_ancestor(typeof(Ide.SearchPopover)) != null)
end
def isBuilding()
- workbench != null && workbench.has_project() && Ide.BuildManager.from_context(workbench.context).get_busy()
+ (workbench != null) && workbench.has_project() &&
Ide.BuildManager.from_context(workbench.context).get_busy()
end
def isRunning()
- workbench != null && workbench.has_project() && Ide.RunManager.from_context(workbench.context).get_busy()
+ (workbench != null) && workbench.has_project() && Ide.RunManager.from_context(workbench.context).get_busy()
end
def isDebugging()
- workbench != null && workbench.has_project() &&
Ide.DebugManager.from_context(workbench.context).get_active()
+ (workbench != null) && workbench.has_project() &&
Ide.DebugManager.from_context(workbench.context).get_active()
end
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]