Hi!
I have opended a TopLevel window that lies over my hole app:
VektorControl* window;
TopLevelWindow* tlw = TopLevelWindow::getActiveTopLevelWindow();
tlw->addAndMakeVisible(SettingsComp);
SettingsComp->setBounds(getBounds());
SettingsComp->toFront(true);
juce::Rectangle<int> target = tlw->getLocalBounds();
target.setLeft(0);
target.setTop(0);
Desktop::getInstance().getAnimator().animateComponent(SettingsComp, target, 1.0f, 0, false, 0, 0);
SettingsComp is my component which is shown as the overlay. In this component, I have a TextEditor control that is shown in a further component over “SettingsComp”. My problem is that that the background of my TextEditor is transparent now:

Why is that and how can I set it to solid?
Thanks!
