summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Busterna <davidebusterna@gmail.com>2019-08-15 13:43:00 +0200
committerDavide Busterna <davidebusterna@gmail.com>2019-08-15 13:43:00 +0200
commit7434966f103812a123811e7fa388692cb606ef88 (patch)
tree70363373f212e9bd40cc59b1649853afe4b20070
parentb030834b6384d5f57e5fc63db21b643adc86b3da (diff)
Automatically select the first image of the assets page
-rw-r--r--editor/plugins/asset_library_editor_plugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp
index e053a34a4d..132bf3973e 100644
--- a/editor/plugins/asset_library_editor_plugin.cpp
+++ b/editor/plugins/asset_library_editor_plugin.cpp
@@ -270,10 +270,10 @@ void EditorAssetLibraryItemDescription::add_preview(int p_id, bool p_video, cons
if (!p_video) {
preview.image = get_icon("ThumbnailWait", "EditorIcons");
}
- if (preview_images.size() == 0 && !p_video) {
+ preview_images.push_back(preview);
+ if (preview_images.size() == 1 && !p_video) {
_preview_click(p_id);
}
- preview_images.push_back(preview);
}
EditorAssetLibraryItemDescription::EditorAssetLibraryItemDescription() {