summaryrefslogtreecommitdiff
path: root/scene/gui
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-05-18 17:45:56 +0200
committerGitHub <noreply@github.com>2022-05-18 17:45:56 +0200
commit838cb598e3ef5572018d3d549c15bb27b0a5864d (patch)
treeac5a54eab20f24b31843972889db9fbd817b7fed /scene/gui
parent03f240ba9309d0d8640eb061080bec92a23614c0 (diff)
parent21b253a87076de8f0169acbae49cd8b720fa3b33 (diff)
Merge pull request #61155 from YuriSizov/theme-using-using
Diffstat (limited to 'scene/gui')
-rw-r--r--scene/gui/control.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/scene/gui/control.h b/scene/gui/control.h
index 43d49da055..f18dd99bff 100644
--- a/scene/gui/control.h
+++ b/scene/gui/control.h
@@ -217,12 +217,12 @@ private:
NodePath focus_prev;
bool bulk_theme_override = false;
- HashMap<StringName, Ref<Texture2D>> icon_override;
- HashMap<StringName, Ref<StyleBox>> style_override;
- HashMap<StringName, Ref<Font>> font_override;
- HashMap<StringName, int> font_size_override;
- HashMap<StringName, Color> color_override;
- HashMap<StringName, int> constant_override;
+ Theme::ThemeIconMap icon_override;
+ Theme::ThemeStyleMap style_override;
+ Theme::ThemeFontMap font_override;
+ Theme::ThemeFontSizeMap font_size_override;
+ Theme::ThemeColorMap color_override;
+ Theme::ThemeConstantMap constant_override;
} data;