diff options
| author | Rémi Verschelde | 2016-07-05 07:28:53 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-07-05 07:28:53 +0200 |
| commit | 628b0a9375814bc811820f073df5f102bdb049fc (patch) | |
| tree | 29bbfbdca9cd368294f8298ac49cd86efacbd763 /tools/editor/editor_resource_preview.cpp | |
| parent | c6b55e45e9256bb41b2d045d8c61d1946de881b1 (diff) | |
| download | godot-628b0a9375814bc811820f073df5f102bdb049fc.tar.gz godot-628b0a9375814bc811820f073df5f102bdb049fc.tar.zst godot-628b0a9375814bc811820f073df5f102bdb049fc.zip | |
Revert "Fix return type for EditorResourcePreview::check_for_invalidation"
This reverts commit 716dfa67a3c5a0a38205179c01676e05a718d244, since it was later
fixes differently with c6b55e45e9256bb41b2d045d8c61d1946de881b1...
Diffstat (limited to 'tools/editor/editor_resource_preview.cpp')
| -rw-r--r-- | tools/editor/editor_resource_preview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_resource_preview.cpp b/tools/editor/editor_resource_preview.cpp index 26a27d0fc..1a0e99611 100644 --- a/tools/editor/editor_resource_preview.cpp +++ b/tools/editor/editor_resource_preview.cpp @@ -336,7 +336,7 @@ void EditorResourcePreview::_bind_methods() { ADD_SIGNAL(MethodInfo("preview_invalidated",PropertyInfo(Variant::STRING,"path"))); } -void EditorResourcePreview::check_for_invalidation(const String& p_path) { +bool EditorResourcePreview::check_for_invalidation(const String& p_path) { preview_mutex->lock(); |
