diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-10-15 09:07:44 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-10-15 09:07:44 +0200 |
commit | 91825ec1d47b6e3eb689140e970cc64e16b267a1 (patch) | |
tree | ed18daec4bc6e82b71c7810fde8d5a622334283d | |
parent | 48d3458f74ee3a5c0596c905b72b52af612cde87 (diff) |
Fix the editor path icon when switching from dark to light theme
-rw-r--r-- | editor/editor_path.cpp | 9 | ||||
-rw-r--r-- | editor/editor_path.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/editor/editor_path.cpp b/editor/editor_path.cpp index f487a3048b..e4a939c379 100644 --- a/editor/editor_path.cpp +++ b/editor/editor_path.cpp @@ -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); diff --git a/editor/editor_path.h b/editor/editor_path.h index 2dc4d21f9b..a84da9f5ac 100644 --- a/editor/editor_path.h +++ b/editor/editor_path.h @@ -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: |