1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-06 04:00:08 +00:00

Fixed a TabbedComponent bug. Fixed fallback fonts on win32.

This commit is contained in:
Julian Storer 2010-11-05 10:21:28 +00:00
parent 030489f086
commit aa71477712
24 changed files with 1097 additions and 1154 deletions

View file

@ -353,7 +353,7 @@ void ComponentPeer::handleFocusGain()
if (! component->isCurrentlyBlockedByAnotherModalComponent())
component->grabKeyboardFocus();
else
Component::bringModalComponentToFront();
ModalComponentManager::getInstance()->bringModalComponentsToFront();
}
}
@ -507,16 +507,9 @@ void ComponentPeer::handleFileDragDrop (const StringArray& files, const Point<in
void ComponentPeer::handleUserClosingWindow()
{
updateCurrentModifiers();
component->userTriedToCloseWindow();
}
//==============================================================================
void ComponentPeer::bringModalComponentToFront()
{
Component::bringModalComponentToFront();
}
//==============================================================================
void ComponentPeer::clearMaskedRegion()
{