diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-11-27 14:33:14 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-11-27 14:34:43 -0300 |
commit | 2e0a94edc6218fd1c7026e7d705725313799e755 (patch) | |
tree | 0381672ef7cffde1b86990d40682462084df484c /scene/resources/theme.h | |
parent | c23710adde23a0e415097dee7d8e6f9ba76a0970 (diff) | |
download | redot-engine-2e0a94edc6218fd1c7026e7d705725313799e755.tar.gz |
Changed theme notifications to work with newly introduced reference counted connections. Closes #21265, Fixes #6145.
Probably fixes more theme notification related open issues, should check.
Diffstat (limited to 'scene/resources/theme.h')
-rw-r--r-- | scene/resources/theme.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/scene/resources/theme.h b/scene/resources/theme.h index 0b76e95f18..c9da5f6ead 100644 --- a/scene/resources/theme.h +++ b/scene/resources/theme.h @@ -47,12 +47,6 @@ class Theme : public Resource { RES_BASE_EXTENSION("theme"); static Ref<Theme> default_theme; - - //keep a reference count to font, so each time the font changes, we emit theme changed too - Map<Ref<Font>, int> font_refcount; - - void _ref_font(Ref<Font> p_sc); - void _unref_font(Ref<Font> p_sc); void _emit_theme_changed(); HashMap<StringName, HashMap<StringName, Ref<Texture> > > icon_map; @@ -190,6 +184,7 @@ public: void get_type_list(List<StringName> *p_list) const; void copy_default_theme(); + void clear(); Theme(); ~Theme(); |