From 45162a3fcbe557234440855a9bbc5b0a2f37f10f Mon Sep 17 00:00:00 2001 From: daboe01 Date: Wed, 28 Jan 2026 19:24:29 +0100 Subject: [PATCH] fixed: acceptsFirstMouse was missing --- AppKit/CPTextView/CPTextView.j | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AppKit/CPTextView/CPTextView.j b/AppKit/CPTextView/CPTextView.j index f51a0da11..9327db2a4 100644 --- a/AppKit/CPTextView/CPTextView.j +++ b/AppKit/CPTextView/CPTextView.j @@ -524,6 +524,11 @@ var kDelegateRespondsTo_textShouldBeginEditing return [self isSelectable]; // editable textviews are automatically selectable } +- (BOOL)acceptsFirstMouse:(CPEvent)anEvent +{ + return YES; +} + - (void)_becomeFirstResponder { [self updateInsertionPointStateAndRestartTimer:YES];