address reviewer feedback
This commit is contained in:
parent
2af861fedc
commit
28b213377f
|
@ -203,7 +203,7 @@ end sub
|
|||
|
||||
' Returns true if any of the data entry forms are in focus
|
||||
function isFormInFocus() as boolean
|
||||
if m.settingDetail.focusedChild <> invalid or m.radioSetting.hasFocus() or m.boolSetting.hasFocus() or m.integerSetting.hasFocus()
|
||||
if isValid(m.settingDetail.focusedChild) or m.radioSetting.hasFocus() or m.boolSetting.hasFocus() or m.integerSetting.hasFocus()
|
||||
return true
|
||||
end if
|
||||
return false
|
||||
|
@ -215,7 +215,7 @@ function onKeyEvent(key as string, press as boolean) as boolean
|
|||
if (key = "back" or key = "left") and m.settingsMenu.focusedChild <> invalid and m.userLocation.Count() > 1
|
||||
LoadMenu({})
|
||||
return true
|
||||
else if (key = "back" or key = "left") and isFormInFocus() = true
|
||||
else if (key = "back" or key = "left") and isFormInFocus()
|
||||
m.settingsMenu.setFocus(true)
|
||||
return true
|
||||
end if
|
||||
|
|
Loading…
Reference in New Issue
Block a user