diff options
Diffstat (limited to 'editor/editor_path.cpp')
-rw-r--r-- | editor/editor_path.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_path.cpp b/editor/editor_path.cpp index 6a1d052e02..cfb70a087a 100644 --- a/editor/editor_path.cpp +++ b/editor/editor_path.cpp @@ -152,6 +152,6 @@ EditorPath::EditorPath(EditorHistory *p_history) { history = p_history; set_clip_text(true); set_text_align(ALIGN_LEFT); - get_popup()->connect("about_to_show", this, "_about_to_show"); - get_popup()->connect("id_pressed", this, "_id_pressed"); + get_popup()->connect_compat("about_to_show", this, "_about_to_show"); + get_popup()->connect_compat("id_pressed", this, "_id_pressed"); } |