fix: harden recovery flow and clean diagnostics

This commit is contained in:
Alexander Sellite 2026-09-01 07:44:01 -04:00
parent 0158b0215f
commit ff78710303
64 changed files with 1163 additions and 418 deletions

View file

@ -34,20 +34,20 @@ func _run() -> void:
var root_controls: Array[Control] = (
FileDialogControllerNavigationType.interactive_controls(root_scope)
)
var directory_list: ItemList
var parent_button: Button
var create_folder_button: Button
var path_edit: LineEdit
var drive_button: MenuButton
var refresh_button: Button
var favorite_button: Button
var hidden_button: Button
var grid_button: Button
var list_button: Button
var filter_button: Button
var sort_button: MenuButton
var cancel_button: Button
var select_button: Button
var directory_list: ItemList = null
var parent_button: Button = null
var create_folder_button: Button = null
var path_edit: LineEdit = null
var drive_button: MenuButton = null
var refresh_button: Button = null
var favorite_button: Button = null
var hidden_button: Button = null
var grid_button: Button = null
var list_button: Button = null
var filter_button: Button = null
var sort_button: MenuButton = null
var cancel_button: Button = null
var select_button: Button = null
for control: Control in root_controls:
if (
control is ItemList