Skip to content

F5 hotkey to refresh FileDialog/EditorFileDialog

Ghost User requested to merge github/fork/neikeq/issue_1123 into master

Related to #1123 (closed), but it may not entirely fix the issue (continue reading).

The unhandled input is captured before the EditorNode captures it, so it won't fire run. At least it does so for the file dialogs that are child of EditorNode. Are the input events spread in a tree way, children before parent? If so, perhaps we should check if a dialog is visible before handling that input in editor node, which I am not sure how to do since:

EditorNode inherits from Node so it cannot call Control::window_has_modal_stack(), and this method is private so it cannot be called on EditorNode's gui_base

Merge request reports