From a92ca7df32fb0962f217ee4578d9394144be0ffe Mon Sep 17 00:00:00 2001 From: ericwa Date: Sat, 12 Oct 2013 04:48:04 +0000 Subject: [PATCH] * Source/NSColorWell.m (-drawRect:): Remove incorrect intersection with clipping rect that was causing artifacts when scrolling a list of color wells in Thematic. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@37218 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 6 ++++++ Source/NSColorWell.m | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0a3a4802f..ccf7085b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2013-10-11 Eric Wasylishen + + * Source/NSColorWell.m (-drawRect:): Remove incorrect intersection + with clipping rect that was causing artifacts when scrolling a list + of color wells in Thematic. + 2013-10-11 Eric Wasylishen * Source/GSThemeTools.m: Fix unflipped/flipped coordinates bug diff --git a/Source/NSColorWell.m b/Source/NSColorWell.m index 7c46fe9cb..b9dad22be 100644 --- a/Source/NSColorWell.m +++ b/Source/NSColorWell.m @@ -185,7 +185,7 @@ static NSString *GSColorWellDidBecomeExclusiveNotification = _wellRect = [[GSTheme theme] drawColorWellBorder: self withBounds: _bounds withClip: clipRect]; - [self drawWellInside: NSIntersectionRect(_wellRect, clipRect)]; + [self drawWellInside: _wellRect]; } /**

Draws the NSColorWell inside the rectangle insideRect.