mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Automatically select the first image of the assets page
This commit is contained in:
parent
b030834b63
commit
7434966f10
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user