diff --git a/src/UI/Dialogs/ExportDialog.gd b/src/UI/Dialogs/ExportDialog.gd index c6f27be69..a0f8ace79 100644 --- a/src/UI/Dialogs/ExportDialog.gd +++ b/src/UI/Dialogs/ExportDialog.gd @@ -63,6 +63,11 @@ func _ready() -> void: else: file_exists_alert_popup.add_button("Cancel Export", false, "cancel") + # TODO: Remove the loop when https://github.com/godotengine/godot/issues/92848 gets fixed. + for dialog_child in path_dialog_popup.get_children(true): + if dialog_child is Window: + dialog_child.always_on_top = path_dialog_popup.always_on_top + func show_tab() -> void: get_tree().call_group("ExportImageOptions", "hide")