mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Merge pull request #31387 from Daw11/assets-image-autoselect
Automatically select the first image of the assets page
This commit is contained in:
commit
983e348fe9
@ -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