diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-05-31 22:28:27 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-05-31 22:33:43 -0300 |
commit | df139f57b32fb19759392e5082ec65a7df316ab9 (patch) | |
tree | a7637f34528086de4cc7686fcebcfc75d05bdcd9 /scene/gui | |
parent | 1ae9ff19194af9a365b3a76e50ee8d3aa01205b8 (diff) |
Some cleanup to GDScript
separated GDFunction (VM) from GDScript in two different files
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/control.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index 73e7237058..0522b2efed 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -1810,6 +1810,7 @@ void Control::_propagate_theme_changed(Control *p_owner) { void Control::set_theme(const Ref<Theme>& p_theme) { + data.theme=p_theme; if (!p_theme.is_null()) { |