diff --git a/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm b/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm index 87418ac02d..b7a905d930 100644 --- a/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm +++ b/modules/juce_graphics/native/juce_mac_CoreGraphicsContext.mm @@ -219,7 +219,7 @@ bool CoreGraphicsContext::clipToRectangleListWithoutTest (const RectangleList& c bool CoreGraphicsContext::clipToRectangleList (const RectangleList& clipRegion) { - return clipToRectangleList (clipRegion) && ! isClipEmpty(); + return clipToRectangleListWithoutTest (clipRegion) && ! isClipEmpty(); } void CoreGraphicsContext::excludeClipRectangle (const Rectangle& r)