From e1762fdcdd7a3a033bbde14ef1e90016b461f07b Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sat, 21 Mar 2026 11:26:42 +0100 Subject: [PATCH] fixed: column dragging did not work when a panel is open --- AppKit/CPTableHeaderView.j | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AppKit/CPTableHeaderView.j b/AppKit/CPTableHeaderView.j index edb914c1c..097519af0 100644 --- a/AppKit/CPTableHeaderView.j +++ b/AppKit/CPTableHeaderView.j @@ -59,6 +59,11 @@ }; } +- (BOOL)acceptsFirstMouse:(CPEvent)anEvent +{ + return YES; +} + - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame];