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:
commit
8b1d9a00dc
2 changed files with 10 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue