diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-11 15:53:50 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2018-09-11 16:09:19 +0200 |
commit | 45b609f46a1b17ecfd9bc91061ef3a8a1ba2e4e8 (patch) | |
tree | 9487171772c27b1a7b2ad0ec6097cdf925a59b1c /editor/connections_dialog.cpp | |
parent | 4c37ea59be1e85b397c48577857b783db10f22d5 (diff) | |
download | redot-engine-45b609f46a1b17ecfd9bc91061ef3a8a1ba2e4e8.tar.gz |
Replace last occurrences of PropertyEditor by EditorInspector
Updates the following plugins:
- ConnectionsDialog
- ScriptEditorDebugger
- ItemListEditorPlugin
Also drop now unnecessary compatibility methods.
Diffstat (limited to 'editor/connections_dialog.cpp')
-rw-r--r-- | editor/connections_dialog.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index 85965768cc..02c0e2daaa 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -341,8 +341,7 @@ ConnectDialog::ConnectDialog() { vbc_right->add_margin_child(TTR("Add Extra Call Argument:"), add_bind_hb); - bind_editor = memnew(PropertyEditor); - bind_editor->hide_top_label(); + bind_editor = memnew(EditorInspector); vbc_right->add_margin_child(TTR("Extra Call Arguments:"), bind_editor, true); |