We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 022d702 + 7acb61d commit f724ee5Copy full SHA for f724ee5
editor/editor_file_system.cpp
@@ -722,12 +722,16 @@ bool EditorFileSystem::_update_scan_actions() {
722
String full_path = ia.dir->get_file_path(idx);
723
724
bool need_reimport = _test_for_reimport(full_path, false);
725
+ // Workaround GH-94416 for the Android editor for now.
726
+ // `import_mt` seems to always be 0 and force a reimport on any fs scan.
727
+#ifndef ANDROID_ENABLED
728
if (!need_reimport && FileAccess::exists(full_path + ".import")) {
729
uint64_t import_mt = ia.dir->get_file_import_modified_time(idx);
730
if (import_mt != FileAccess::get_modified_time(full_path + ".import")) {
731
need_reimport = true;
732
}
733
734
+#endif
735
736
if (need_reimport) {
737
//must reimport
0 commit comments