Get default widget from modal dialog when it's active
This commit is contained in:
parent
e6893aa58c
commit
70e82142d1
@ -400,9 +400,19 @@ void EventHandler::sendNavigationEvent(const NavigationDirection nav, const int
|
||||
if (w == NULL)
|
||||
{
|
||||
Widget* defaultWidget = NULL;
|
||||
Screen* screen = GUIEngine::getCurrentScreen();
|
||||
if (screen == NULL) return;
|
||||
defaultWidget = screen->getFirstWidget();
|
||||
|
||||
if (ScreenKeyboard::isActive())
|
||||
{
|
||||
defaultWidget = ScreenKeyboard::getCurrent()->getFirstWidget();
|
||||
}
|
||||
else if (ModalDialog::isADialogActive())
|
||||
{
|
||||
defaultWidget = ModalDialog::getCurrent()->getFirstWidget();
|
||||
}
|
||||
else if (GUIEngine::getCurrentScreen() != NULL)
|
||||
{
|
||||
defaultWidget = GUIEngine::getCurrentScreen()->getFirstWidget();
|
||||
}
|
||||
|
||||
if (defaultWidget != NULL)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user