quartz: Actually use the window background PATTERN color

Before we used a window's background color, which resulted in corrupted
display in some cases, presumably because we didn't reset the active
pattern. This patch seems to eliminate the observed corruption.
(cherry picked from commit 0e42cf81f1)
This commit is contained in:
Kristian Rietveld 2012-10-04 09:06:01 +02:00 committed by Michael Natterer
parent e09cf6978e
commit c7ce4b6b3d

View File

@ -92,7 +92,7 @@
*/
[NSGraphicsContext saveGraphicsState];
[[[self window] backgroundColor] setFill];
[[NSColor windowBackgroundColor] setFill];
[NSBezierPath fillRect:rect];
[NSGraphicsContext restoreGraphicsState];