You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't reproduce it reliably.
Sometimes, when hiding and showing the filesystem (when it's docked to the bottom), the thumbnails of the files will all be a default icon.
double clicking a file or switching directories makes the thumbnail show up again.
in this clip after opening the theme, I double-click a scene file and the thumbnails reapear:
simplescreenrecorder-2024-04-18_08.41.22.mp4
Steps to reproduce
Use the engine for long enough with the filesystem docked at the bottom of the editor.
Minimal reproduction project (MRP)
any
The text was updated successfully, but these errors were encountered:
There were (at least) three cases where thumbnails would not display, if they were generated while the FileSystemDock was not visible:
- current_path == "Favorites", due to p_path not starting with "Favorites"
- current_path == "res://", due to current_path having last "/" trimmed for comparison
- current_path pointing to a selected file instead of folder, since it no longer matches p_path's base directory
This change removes the current_path and is_visible_in_tree checks when determining whether to update the file's icon.
Fixesgodotengine#90801Fixesgodotengine#91432
MewPurPur
pushed a commit
to MewPurPur/godot
that referenced
this issue
Jul 11, 2024
There were (at least) three cases where thumbnails would not display, if they were generated while the FileSystemDock was not visible:
- current_path == "Favorites", due to p_path not starting with "Favorites"
- current_path == "res://", due to current_path having last "/" trimmed for comparison
- current_path pointing to a selected file instead of folder, since it no longer matches p_path's base directory
This change removes the current_path and is_visible_in_tree checks when determining whether to update the file's icon.
Fixesgodotengine#90801Fixesgodotengine#91432
2nafish117
pushed a commit
to 2nafish117/godot
that referenced
this issue
Aug 5, 2024
There were (at least) three cases where thumbnails would not display, if they were generated while the FileSystemDock was not visible:
- current_path == "Favorites", due to p_path not starting with "Favorites"
- current_path == "res://", due to current_path having last "/" trimmed for comparison
- current_path pointing to a selected file instead of folder, since it no longer matches p_path's base directory
This change removes the current_path and is_visible_in_tree checks when determining whether to update the file's icon.
Fixesgodotengine#90801Fixesgodotengine#91432
Tested versions
System information
linux
Issue description
I can't reproduce it reliably.
Sometimes, when hiding and showing the filesystem (when it's docked to the bottom), the thumbnails of the files will all be a default icon.
in this clip after opening the theme, I double-click a scene file and the thumbnails reapear:
simplescreenrecorder-2024-04-18_08.41.22.mp4
Steps to reproduce
Use the engine for long enough with the filesystem docked at the bottom of the editor.
Minimal reproduction project (MRP)
any
The text was updated successfully, but these errors were encountered: