From 3b1aa240dc2415c454062e769d4edcc81544e1f8 Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Wed, 31 Aug 2022 15:02:40 +0300 Subject: Add a lifecycle method for manual theme item caching to Control --- scene/gui/panel.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'scene/gui/panel.h') diff --git a/scene/gui/panel.h b/scene/gui/panel.h index 5d2e912680..f9bd721681 100644 --- a/scene/gui/panel.h +++ b/scene/gui/panel.h @@ -36,7 +36,13 @@ class Panel : public Control { GDCLASS(Panel, Control); + struct ThemeCache { + Ref panel_style; + } theme_cache; + protected: + virtual void _update_theme_item_cache() override; + void _notification(int p_what); public: -- cgit v1.2.3