1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

NSViewComponentPeer: Fix naming of drawRectWithContext

This commit is contained in:
reuk 2021-10-28 14:50:25 +01:00
parent 540001365c
commit 49bbadbca9
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -896,7 +896,7 @@ public:
NSRect rect = rects[i];
CGContextSaveGState (cg);
CGContextClipToRect (cg, CGRectMake (rect.origin.x, rect.origin.y, rect.size.width, rect.size.height));
drawRect (cg, rect, displayScale);
drawRectWithContext (cg, rect, displayScale);
CGContextRestoreGState (cg);
}