summaryrefslogtreecommitdiffstats
path: root/editor/filesystem_dock.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-06-11 11:46:35 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-06-11 11:46:35 +0200
commite4fa8543ea11b7d25c24c81c4a0b824b60fb82ec (patch)
tree1cb028256f8c3dbb92ea9ea4c7af73d1c363d451 /editor/filesystem_dock.cpp
parent62a056aa56ca4471c035e43741c88e4a22d81802 (diff)
downloadredot-engine-e4fa8543ea11b7d25c24c81c4a0b824b60fb82ec.tar.gz
Revert "Fix FileSystem dock won't show any file folders"
This reverts commit 72856d633a6be5c596d4a3231acab009828a2efe. Fixes #93022.
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r--editor/filesystem_dock.cpp19
1 files changed, 4 insertions, 15 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp
index 7d90da05c2..f8a82187b9 100644
--- a/editor/filesystem_dock.cpp
+++ b/editor/filesystem_dock.cpp
@@ -550,8 +550,6 @@ void FileSystemDock::_notification(int p_what) {
case NOTIFICATION_READY: {
EditorFeatureProfileManager::get_singleton()->connect("current_feature_profile_changed", callable_mp(this, &FileSystemDock::_feature_profile_changed));
EditorFileSystem::get_singleton()->connect("filesystem_changed", callable_mp(this, &FileSystemDock::_fs_changed));
- EditorFileSystem::get_singleton()->connect("scan_started", callable_mp(this, &FileSystemDock::_scan_started));
- EditorFileSystem::get_singleton()->connect("scan_stopped", callable_mp(this, &FileSystemDock::_scan_stopped));
EditorResourcePreview::get_singleton()->connect("preview_invalidated", callable_mp(this, &FileSystemDock::_preview_invalidated));
button_file_list_display_mode->connect(SceneStringName(pressed), callable_mp(this, &FileSystemDock::_toggle_file_display));
@@ -568,7 +566,9 @@ void FileSystemDock::_notification(int p_what) {
_update_display_mode();
- if (!EditorFileSystem::get_singleton()->is_scanning()) {
+ if (EditorFileSystem::get_singleton()->is_scanning()) {
+ _set_scanning_mode();
+ } else {
_update_tree(Vector<String>(), true);
}
} break;
@@ -1326,18 +1326,6 @@ void FileSystemDock::_fs_changed() {
set_process(false);
}
-void FileSystemDock::_scan_started(bool p_complete_scan) {
- if (p_complete_scan) {
- _set_scanning_mode();
- }
-}
-
-void FileSystemDock::_scan_stopped(bool p_complete_scan) {
- if (p_complete_scan) {
- _fs_changed();
- }
-}
-
void FileSystemDock::_set_scanning_mode() {
button_hist_prev->set_disabled(true);
button_hist_next->set_disabled(true);
@@ -2661,6 +2649,7 @@ bool FileSystemDock::_matches_all_search_tokens(const String &p_text) {
}
void FileSystemDock::_rescan() {
+ _set_scanning_mode();
EditorFileSystem::get_singleton()->scan();
}