summaryrefslogtreecommitdiffstats
path: root/platform
diff options
context:
space:
mode:
authorHilderin <81109165+Hilderin@users.noreply.github.com>2024-09-14 09:37:04 -0400
committerRémi Verschelde <rverschelde@gmail.com>2024-09-17 08:57:45 +0200
commit7246e1488e3447fc80e37c5092cadd7f52423cd7 (patch)
treeef7c7d0851786bb3578aa3a923cb33861202ba49 /platform
parenta2e3c1345101116e8f7947f35988ad57da9958ab (diff)
downloadredot-engine-7246e1488e3447fc80e37c5092cadd7f52423cd7.tar.gz
Fix editor_doc_cache locked on editor startup
(cherry picked from commit e064efccbc0c48576bc23087ba8fd0773d13714d)
Diffstat (limited to 'platform')
-rw-r--r--platform/android/export/export_plugin.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp
index 6a17dc8bf6..d5153fb6c0 100644
--- a/platform/android/export/export_plugin.cpp
+++ b/platform/android/export/export_plugin.cpp
@@ -290,7 +290,9 @@ void EditorExportPlatformAndroid::_check_for_changes_poll_thread(void *ud) {
// Check for devices updates
String adb = get_adb_path();
- if (ea->has_runnable_preset.is_set() && FileAccess::exists(adb)) {
+ // adb.exe was locking the editor_doc_cache file on startup. Adding a check for is_editor_ready provides just enough time
+ // to regenerate the doc cache.
+ if (ea->has_runnable_preset.is_set() && FileAccess::exists(adb) && EditorNode::get_singleton()->is_editor_ready()) {
String devices;
List<String> args;
args.push_back("devices");