Don't set metadata_label font if it doesn't exist

This commit is contained in:
kobewi 2021-07-23 16:29:49 +02:00
parent 8cddd3b2c0
commit 2846dbf239
2 changed files with 7 additions and 5 deletions

View file

@ -39,10 +39,10 @@ class TexturePreview : public MarginContainer {
GDCLASS(TexturePreview, MarginContainer);
private:
TextureRect *texture_display;
TextureRect *texture_display = nullptr;
TextureRect *checkerboard;
Label *metadata_label;
TextureRect *checkerboard = nullptr;
Label *metadata_label = nullptr;
protected:
void _notification(int p_what);