diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-09-11 11:28:01 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-09-11 11:28:01 -0300 |
commit | 95eb7466df890dcbed9eb8e8bda15bd9235db9c0 (patch) | |
tree | 6c23afb3abef8e539c42d1024a0fa213bc98692b /scene/gui/control.cpp | |
parent | 1bf684cea274db7c58b3f62a77ad4de3980c14dc (diff) | |
download | redot-engine-95eb7466df890dcbed9eb8e8bda15bd9235db9c0.tar.gz |
-Added a ColorFrame control, kind of like Texture but for color.
-Added dropping nodes to text editor for them to become a path
-Fixed issues with font not properly being set in code editor
Diffstat (limited to 'scene/gui/control.cpp')
-rw-r--r-- | scene/gui/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index c120be65d0..269bd09b17 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -1924,7 +1924,7 @@ void Control::_propagate_theme_changed(CanvasItem *p_at,Control *p_owner,bool p_ if (p_assign) { c->data.theme_owner=p_owner; } - c->_notification(NOTIFICATION_THEME_CHANGED); + c->notification(NOTIFICATION_THEME_CHANGED); c->update(); } } |