mirror of
https://github.com/lightsoutgames/godot-accessibility.git
synced 2024-11-21 19:45:55 +00:00
Make AcceptDialog focusable so its message can be reread.
This commit is contained in:
parent
cc910a8570
commit
fe19717640
|
@ -577,6 +577,8 @@ func is_focusable(node):
|
|||
return true
|
||||
if node.is_class("EditorInspectorSection"):
|
||||
return true
|
||||
if node is AcceptDialog:
|
||||
return true
|
||||
if node is Container or node is Separator or node is ScrollBar or node is Popup or node.get_class() == "Control":
|
||||
return false
|
||||
return true
|
||||
|
|
Loading…
Reference in New Issue
Block a user