From 76e2a2b8caa6bf34cf2d404ebe3e6c546dae2bfc Mon Sep 17 00:00:00 2001 From: Antoine Mercadal Date: Wed, 5 Oct 2011 16:24:12 +0200 Subject: [PATCH] support new properties in nib2cib --- Tools/nib2cib/NSScrollView.j | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tools/nib2cib/NSScrollView.j b/Tools/nib2cib/NSScrollView.j index 43b6d5e8f..f2af67f1e 100644 --- a/Tools/nib2cib/NSScrollView.j +++ b/Tools/nib2cib/NSScrollView.j @@ -40,7 +40,8 @@ _bottomCornerView = [[CPView alloc] init]; [self addSubview:_bottomCornerView]; - + [self setScrollerKnobStyle:[aCoder decodeObjectForKey:"NSScrollerKnobStyle"] || CPScrollerKnobStyleDefault]; + CPLogPrint([self scrollerKnobStyle]); _hasVerticalScroller = !!(flags & (1 << 4)); _hasHorizontalScroller = !!(flags & (1 << 5)); _autohidesScrollers = !!(flags & (1 << 9));