mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-30 02:50:05 +00:00
Fix to make GL rendered comps repaint when un-minimised on win32.
This commit is contained in:
parent
5409951861
commit
09d626eafa
1 changed files with 3 additions and 1 deletions
|
|
@ -498,7 +498,9 @@ public:
|
|||
|
||||
if (canBeAttached (comp))
|
||||
{
|
||||
if (! isAttached (comp))
|
||||
if (isAttached (comp))
|
||||
comp.repaint(); // (needed when windows are un-minimised)
|
||||
else
|
||||
attach();
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue