1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-28 02:30:05 +00:00

iOS: Fix a constant redrawing bug

This commit is contained in:
Tom Poole 2023-06-08 11:12:58 +01:00
parent 50518ee618
commit 1fbfeb6039

View file

@ -2198,6 +2198,8 @@ void UIViewComponentPeer::displayLinkCallback()
for (const auto& r : deferredRepaints)
[view setNeedsDisplayInRect: convertToCGRect (r)];
deferredRepaints.clear();
}
//==============================================================================