From 1c597eb0df0d262e5eebc2b359a587b6ffd16572 Mon Sep 17 00:00:00 2001 From: Mike Fellows Date: Tue, 28 Sep 2010 23:05:29 -0700 Subject: [PATCH] Fix regression in CPBox's setBorder --- AppKit/CPBox.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPBox.j b/AppKit/CPBox.j index a8d7ef2a1..2eedd0768 100644 --- a/AppKit/CPBox.j +++ b/AppKit/CPBox.j @@ -104,7 +104,7 @@ CPGrooveBorder = 3; if (_borderType === aBorderType) return; - _borderType = value; + _borderType = aBorderType; [self setNeedsDisplay:YES]; }