summaryrefslogtreecommitdiffstats
path: root/editor/editor_resource_preview.cpp
diff options
context:
space:
mode:
authorJuan Linietsky <juan@godotengine.org>2019-02-27 13:31:11 -0300
committerJuan Linietsky <juan@godotengine.org>2019-02-27 14:11:17 -0300
commita5370b1b1bed3744941c90b4a05d4516aabd4c67 (patch)
treee360ade2bc41c311d507aebac500a93eef032bca /editor/editor_resource_preview.cpp
parentce615c1a828db38864b5eec5854376e745e5617e (diff)
downloadredot-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.cpp7
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() {