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

Fixes for ComponentBoundsConstrainer, linux VSTs, and firefox NPAPI.

This commit is contained in:
Julian Storer 2010-10-28 17:53:52 +01:00
parent ab368cd3ac
commit 584d9a4ec0
7 changed files with 126 additions and 119 deletions

View file

@ -512,6 +512,12 @@ public:
if (! isBrowserContentView (parentView))
parentView = currentParentView;
}
else if (currentParentView != 0 && ! target.isEmpty())
{
// Firefox can send lots of spurious resize messages when updating its pages, so this is a
// bodge to avoid flickering caused by repeatedly removing and re-adding the view..
parentView = currentParentView;
}
log ("parent: " + nsStringToJuce ([parentView description]));
}