summaryrefslogtreecommitdiffstats
path: root/editor/editor_resource_preview.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-06-07 15:54:47 +0200
committerkobewi <kobewi4e@gmail.com>2024-06-07 15:54:47 +0200
commit20d67aac67509f797e481e8f732477b8885a2239 (patch)
tree4c2f0d649277ccbad1b1e712b119e73e6f920579 /editor/editor_resource_preview.cpp
parente96ad5af98547df71b50c4c4695ac348638113e0 (diff)
downloadredot-engine-20d67aac67509f797e481e8f732477b8885a2239.tar.gz
Remove unused order variable from EditorResourcePreview
Diffstat (limited to 'editor/editor_resource_preview.cpp')
-rw-r--r--editor/editor_resource_preview.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/editor/editor_resource_preview.cpp b/editor/editor_resource_preview.cpp
index dd698d74b6..742d29fef0 100644
--- a/editor/editor_resource_preview.cpp
+++ b/editor/editor_resource_preview.cpp
@@ -138,7 +138,6 @@ void EditorResourcePreview::_preview_ready(const String &p_path, int p_hash, con
}
Item item;
- item.order = order++;
item.preview = p_texture;
item.small_preview = p_small_texture;
item.last_hash = p_hash;
@@ -412,7 +411,6 @@ void EditorResourcePreview::queue_edited_resource_preview(const Ref<Resource> &p
String path_id = "ID:" + itos(p_res->get_instance_id());
if (cache.has(path_id) && cache[path_id].last_hash == p_res->hash_edited_version_for_preview()) {
- cache[path_id].order = order++;
p_receiver->call(p_receiver_func, path_id, cache[path_id].preview, cache[path_id].small_preview, p_userdata);
return;
}
@@ -439,7 +437,6 @@ void EditorResourcePreview::queue_resource_preview(const String &p_path, Object
MutexLock lock(preview_mutex);
if (cache.has(p_path)) {
- cache[p_path].order = order++;
p_receiver->call(p_receiver_func, p_path, cache[p_path].preview, cache[p_path].small_preview, p_userdata);
return;
}
@@ -533,7 +530,6 @@ void EditorResourcePreview::stop() {
EditorResourcePreview::EditorResourcePreview() {
singleton = this;
- order = 0;
}
EditorResourcePreview::~EditorResourcePreview() {