summaryrefslogtreecommitdiffstats
path: root/editor/editor_file_system.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-08-22 19:36:03 +0200
committerGitHub <noreply@github.com>2022-08-22 19:36:03 +0200
commit1fbf7b1ba5f8d498d199793fca179b9e3cd3c7bd (patch)
tree3751abec2cfd91bc902ef51f347a1c24cfe04428 /editor/editor_file_system.cpp
parent0cea7e3f64e3f22e15cca5e2ab71406bec6b8f5a (diff)
parenta3936adb2960c114d56842b8c124927bea56ae14 (diff)
downloadredot-engine-1fbf7b1ba5f8d498d199793fca179b9e3cd3c7bd.tar.gz
Merge pull request #64610 from reduz/startup-benchmark-support
Diffstat (limited to 'editor/editor_file_system.cpp')
-rw-r--r--editor/editor_file_system.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp
index 1a105c7fe8..bda2e283ef 100644
--- a/editor/editor_file_system.cpp
+++ b/editor/editor_file_system.cpp
@@ -1192,11 +1192,6 @@ void EditorFileSystem::scan_changes() {
void EditorFileSystem::_notification(int p_what) {
switch (p_what) {
- case NOTIFICATION_ENTER_TREE: {
- call_deferred(SNAME("scan")); //this should happen after every editor node entered the tree
-
- } break;
-
case NOTIFICATION_EXIT_TREE: {
Thread &active_thread = thread.is_started() ? thread : thread_sources;
if (use_threads && active_thread.is_started()) {