From 89d345dfdcf6b3da91c3a332028b3ce1c93a9f68 Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sat, 28 Feb 2026 19:35:51 +0100 Subject: [PATCH] fixed: added missing isActive --- AppKit/CPColorWell.j | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AppKit/CPColorWell.j b/AppKit/CPColorWell.j index 85696f5ff..61ebe1a30 100644 --- a/AppKit/CPColorWell.j +++ b/AppKit/CPColorWell.j @@ -91,6 +91,11 @@ var _CPColorWellDidBecomeExclusiveNotification = @"_CPColorWellDidBecomeExclusiv [[CPColorPanel sharedColorPanel] orderFront:self]; } +- (BOOL)isActive +{ + return [self isFirstResponder] && [self isEnabled]; +} + /*! Deactivates the color well. */