diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-04-06 09:44:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 09:44:38 +0200 |
commit | 6b07c72d760a90acd862f636ac44b6945b8fa45b (patch) | |
tree | 283c18d31c448a2db93b84d2df7202333f783ac3 /editor/property_editor.cpp | |
parent | 11f31a732922571bf6e0398a5192132ae67aee16 (diff) | |
parent | c1023157eb761efcda07c3fa2015517b8a3621e1 (diff) | |
download | redot-engine-6b07c72d760a90acd862f636ac44b6945b8fa45b.tar.gz |
Merge pull request #37556 from KoBeWi/kill_get_index
Remove Node.get_position_in_parent()
Diffstat (limited to 'editor/property_editor.cpp')
-rw-r--r-- | editor/property_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/property_editor.cpp b/editor/property_editor.cpp index 444cae42c5..978c95b9c8 100644 --- a/editor/property_editor.cpp +++ b/editor/property_editor.cpp @@ -257,7 +257,7 @@ void CustomPropertyEditor::_menu_option(int p_which) { file_system_dock->navigate_to_path(r->get_path()); // Ensure that the FileSystem dock is visible. TabContainer *tab_container = (TabContainer *)file_system_dock->get_parent_control(); - tab_container->set_current_tab(file_system_dock->get_position_in_parent()); + tab_container->set_current_tab(file_system_dock->get_index()); } break; default: { |