From c75b1bf5d3ddb3a07873e488fcd9000b9c8219bb Mon Sep 17 00:00:00 2001 From: Michael Alexsander Date: Wed, 17 Jun 2026 12:21:33 -0300 Subject: [PATCH] Fix broken icons when moving the FileSystem dock to the bottom --- editor/docks/filesystem_dock.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editor/docks/filesystem_dock.cpp b/editor/docks/filesystem_dock.cpp index f13caaec06..232fc2402c 100644 --- a/editor/docks/filesystem_dock.cpp +++ b/editor/docks/filesystem_dock.cpp @@ -561,6 +561,10 @@ void FileSystemDock::_update_display_mode(bool p_force) { _update_file_list(!selected_files.is_empty(), selected_files); } else { tree->ensure_cursor_is_visible(); + + // Always update to avoid broken icons, as previous updates + // could have happened before the dock was inside the tree. + update_all(); } } break; }