1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-18 00:54:19 +00:00

Workaround for new OSX 10.11 behaviour that caused repaint problems when setting window bounds frequently

This commit is contained in:
jules 2015-12-01 15:48:38 +00:00
parent 99de06cf2c
commit d63fe244b3

View file

@ -261,7 +261,9 @@ public:
else
{
[window setFrame: [window frameRectForContentRect: flippedScreenRect (r)]
display: true];
display: false];
[view setNeedsDisplay: true];
}
}