Merge pull request #32847 from Calinou/fix-editor-path-icon-theme-change

Fix the editor path icon when switching from dark to light theme
This commit is contained in:
Rémi Verschelde 2019-10-25 23:19:38 +02:00 committed by GitHub
commit 8b1d9a00dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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: