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:
parent
030489f086
commit
aa71477712
24 changed files with 1097 additions and 1154 deletions
|
|
@ -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()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue