This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Workaround for new OSX 10.11 behaviour that caused repaint problems when setting window bounds frequently
tags/2021-05-28
jules
10 years ago
parent
99de06cf2c
commit
d63fe244b3
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm
+ 3
- 1
modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm
View File
@@ -261,7 +261,9 @@ public:
else
{
[window setFrame: [window frameRectForContentRect: flippedScreenRect (r)]
display: true];
display: false];
[view setNeedsDisplay: true];
}
}
Write
Preview
Loading…
Cancel
Save