1
0
Fork 0
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:
jules 2014-03-30 17:30:22 +01:00
parent 5409951861
commit 09d626eafa

View file

@ -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