diff options
author | Juan Linietsky <juan@godotengine.org> | 2019-02-27 13:31:11 -0300 |
---|---|---|
committer | Juan Linietsky <juan@godotengine.org> | 2019-02-27 14:11:17 -0300 |
commit | a5370b1b1bed3744941c90b4a05d4516aabd4c67 (patch) | |
tree | e360ade2bc41c311d507aebac500a93eef032bca /editor/editor_resource_preview.cpp | |
parent | ce615c1a828db38864b5eec5854376e745e5617e (diff) | |
download | redot-engine-a5370b1b1bed3744941c90b4a05d4516aabd4c67.tar.gz |
-Fix problem of order of import plugins, closes #26340
-Ensure resource previewer does not start until first import is done
Diffstat (limited to 'editor/editor_resource_preview.cpp')
-rw-r--r-- | editor/editor_resource_preview.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/editor/editor_resource_preview.cpp b/editor/editor_resource_preview.cpp index 1fa1fe9070..e0c292dc87 100644 --- a/editor/editor_resource_preview.cpp +++ b/editor/editor_resource_preview.cpp @@ -417,6 +417,10 @@ void EditorResourcePreview::check_for_invalidation(const String &p_path) { } } +void EditorResourcePreview::start() { + ERR_FAIL_COND(thread); + thread = Thread::create(_thread_func, this); +} void EditorResourcePreview::stop() { if (thread) { exit = true; @@ -428,13 +432,12 @@ void EditorResourcePreview::stop() { } EditorResourcePreview::EditorResourcePreview() { + thread = NULL; singleton = this; preview_mutex = Mutex::create(); preview_sem = Semaphore::create(); order = 0; exit = false; - - thread = Thread::create(_thread_func, this); } EditorResourcePreview::~EditorResourcePreview() { |