1
0
Fork 0
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:
jules 2012-12-29 15:31:25 +00:00
parent 04518ac15d
commit f0ddb858fc

View file

@ -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;
}
}
}