From 19cceb4dd9417dfbcf3eae3836f72e9790de9c92 Mon Sep 17 00:00:00 2001 From: daboe01 Date: Mon, 23 Feb 2026 14:24:09 +0100 Subject: [PATCH] fixed: key duplication in textview on ALT --- AppKit/CPEvent.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPEvent.j b/AppKit/CPEvent.j index 61f7038a8..5cc439e08 100644 --- a/AppKit/CPEvent.j +++ b/AppKit/CPEvent.j @@ -590,7 +590,7 @@ var _CPEventPeriodicEventPeriod = 0, // of the event, including the _isActionKey flag that was set at creation time. return ( // Is it a command shortcut? - (_modifierFlags & (CPCommandKeyMask | CPControlKeyMask | CPAlternateKeyMask)) || + (_modifierFlags & (CPCommandKeyMask | CPControlKeyMask)) || // Is it a key that doesn't produce a character? ([_characters length] === 0) ||