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

Fixed a spelling mistake and in the VST hosting code. Fixed a mistake in the design of the StandaloneFilterwindow class.

This commit is contained in:
Julian Storer 2011-08-31 15:47:54 +01:00
parent 3744efa6ea
commit 5b92d8cc8f
5 changed files with 49 additions and 44 deletions

View file

@ -229,7 +229,13 @@ void ResizableWindow::resized()
}
if (contentComponent != nullptr)
{
// The window expects to be able to be able to manage the size and position
// of its content component, so you can't arbitrarily add a transform to it!
jassert (! contentComponent->isTransformed());
contentComponent->setBoundsInset (getContentComponentBorder());
}
updateLastPos();