From ec9090605222ba6029052b97c5cff679538a6665 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Fri, 18 Apr 2025 13:00:31 -0400 Subject: [PATCH] Maybe finally solved the plugin keybinding issue... --- src/cthulhu/cthulhu.py | 2 +- src/cthulhu/cthulhuVersion.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cthulhu/cthulhu.py b/src/cthulhu/cthulhu.py index a3a97be..ff3844e 100644 --- a/src/cthulhu/cthulhu.py +++ b/src/cthulhu/cthulhu.py @@ -121,7 +121,7 @@ class APIHelper: self._gestureBindings[contextName].append(binding) # Register key grab at the system level - grab_ids = cthulhu.addKeyGrab(binding) + grab_ids = self.app.addKeyGrab(binding) # For later removal if grab_ids: diff --git a/src/cthulhu/cthulhuVersion.py b/src/cthulhu/cthulhuVersion.py index f0a14c3..794f76f 100644 --- a/src/cthulhu/cthulhuVersion.py +++ b/src/cthulhu/cthulhuVersion.py @@ -23,5 +23,5 @@ # Fork of Orca Screen Reader (GNOME) # Original source: https://gitlab.gnome.org/GNOME/orca -version = "2025.04.14" +version = "2025.04.18" codeName = "testing"