1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-04 17:04:49 +00:00

Fix assetlib crash

This commit is contained in:
Yuri Roubinsky
2022-01-16 19:40:14 +03:00
parent 8958e1b352
commit baba079f93
2 changed files with 11 additions and 8 deletions

View File

@@ -126,9 +126,10 @@ public:
EditorAssetLibraryItemDescription();
};
class EditorAssetLibraryItemDownload : public PanelContainer {
GDCLASS(EditorAssetLibraryItemDownload, PanelContainer);
class EditorAssetLibraryItemDownload : public Control {
GDCLASS(EditorAssetLibraryItemDownload, Control);
PanelContainer *panel;
TextureRect *icon;
Label *title;
ProgressBar *progress;