mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 08:30:59 +00:00
* 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
This commit is contained in:
parent
1411fdfa3a
commit
a627839460
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2013-10-11 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* 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 <ewasylishen@gmail.com>
|
||||
|
||||
* Source/GSThemeTools.m: Fix unflipped/flipped coordinates bug
|
||||
|
|
|
@ -185,7 +185,7 @@ static NSString *GSColorWellDidBecomeExclusiveNotification =
|
|||
_wellRect = [[GSTheme theme] drawColorWellBorder: self
|
||||
withBounds: _bounds
|
||||
withClip: clipRect];
|
||||
[self drawWellInside: NSIntersectionRect(_wellRect, clipRect)];
|
||||
[self drawWellInside: _wellRect];
|
||||
}
|
||||
|
||||
/**<p>Draws the NSColorWell inside the rectangle <var>insideRect</var>.</p>
|
||||
|
|
Loading…
Reference in a new issue