|
@@ -132,6 +132,15 @@ void EditorPath::_id_pressed(int p_idx) {
|
|
EditorNode::get_singleton()->push_item(obj);
|
|
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() {
|
|
void EditorPath::_bind_methods() {
|
|
|
|
|
|
ClassDB::bind_method("_about_to_show", &EditorPath::_about_to_show);
|
|
ClassDB::bind_method("_about_to_show", &EditorPath::_about_to_show);
|