diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-01 12:06:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-01 12:06:35 +0200 |
| commit | d17eac735cc84abd9afd1e083df1a4e8a2c8e656 (patch) | |
| tree | d006c3a5457edbde9e4f9016b48d0968d70e3ce5 /editor/groups_editor.cpp | |
| parent | b62041d1f3b6428974d5be7ad9d378a445d432ac (diff) | |
| parent | d2833d4f4d891b6a0ee32a04f9d32a410b998b93 (diff) | |
| download | redot-engine-d17eac735cc84abd9afd1e083df1a4e8a2c8e656.tar.gz | |
Merge pull request #29815 from NilsIrl/plus_file_1
Replace ` + "/" + ` with `String::file_add()`
Diffstat (limited to 'editor/groups_editor.cpp')
| -rw-r--r-- | editor/groups_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/groups_editor.cpp b/editor/groups_editor.cpp index 3cf3bbf0f2..aeded90a6b 100644 --- a/editor/groups_editor.cpp +++ b/editor/groups_editor.cpp @@ -59,7 +59,7 @@ void GroupDialog::_group_selected() { void GroupDialog::_load_nodes(Node *p_current) { String item_name = p_current->get_name(); if (p_current != scene_tree->get_edited_scene_root()) { - item_name = String(p_current->get_parent()->get_name()) + "/" + String(item_name); + item_name = String(p_current->get_parent()->get_name()) + "/" + item_name; } bool keep = true; |
