mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Tab key forwarding change.
This commit is contained in:
parent
04518ac15d
commit
f0ddb858fc
1 changed files with 3 additions and 1 deletions
|
|
@ -187,7 +187,9 @@ bool ComponentPeer::handleKeyPress (const int keyCode, const juce_wchar textChar
|
|||
{
|
||||
currentlyFocused->moveKeyboardFocusToSibling (isTab);
|
||||
keyWasUsed = (currentlyFocused != Component::getCurrentlyFocusedComponent());
|
||||
break;
|
||||
|
||||
if (keyWasUsed || deletionChecker == nullptr)
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue