Fix the editor path icon when switching from dark to light theme

This commit is contained in:
Hugo Locurcio 2019-10-15 09:07:44 +02:00
parent 48d3458f74
commit 91825ec1d4
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C
2 changed files with 10 additions and 0 deletions

View file

@ -132,6 +132,15 @@ void EditorPath::_id_pressed(int p_idx) {
EditorNode::get_singleton()->push_item(obj);
}
void EditorPath::_notification(int p_what) {
switch (p_what) {
case NOTIFICATION_THEME_CHANGED: {
update_path();
} break;
}
}
void EditorPath::_bind_methods() {
ClassDB::bind_method("_about_to_show", &EditorPath::_about_to_show);

View file

@ -48,6 +48,7 @@ class EditorPath : public MenuButton {
void _add_children_to_popup(Object *p_obj, int p_depth = 0);
protected:
void _notification(int p_what);
static void _bind_methods();
public: