Make AcceptDialog focusable so its message can be reread.

This commit is contained in:
Nolan Darilek 2020-01-13 17:52:59 -06:00
parent cc910a8570
commit fe19717640

View File

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