From 8bc6389f3d27c43afb24e289ba104035f0e559b2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 20 May 2026 12:08:31 +0530 Subject: [PATCH] Technically copy_or_noop should be passed through event when there is no active window, although it will do nothing in that case anyway --- kitty/boss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/boss.py b/kitty/boss.py index 146f153ac..c93b288d6 100644 --- a/kitty/boss.py +++ b/kitty/boss.py @@ -3740,4 +3740,4 @@ class Boss: def copy_or_noop(self) -> bool | None: if w := self.active_window: return w.copy_or_noop() - return None + return True