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.