From 58af0688d32042fb98aa0842a400ab21fd383681 Mon Sep 17 00:00:00 2001 From: coumcashier <122149176+coumcashier@users.noreply.github.com> Date: Sat, 26 Aug 2023 08:10:34 +1000 Subject: [PATCH] rename: don't update current path when file list has focus FileSystemDock: Don't update current path and path edit when the file list has focus. So that when renaming from the file list, we don't cd into the renamed folder automatically. --- editor/filesystem_dock.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index b80d3c1869..36f712dde8 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -1789,11 +1789,13 @@ void FileSystemDock::_rename_operation_confirm() { EditorSceneTabs::get_singleton()->set_current_tab(current_tab); + if (tree->has_focus()) { + current_path = new_path; + current_path_line_edit->set_text(current_path); + } + print_verbose("FileSystem: calling rescan."); _rescan(); - - current_path = new_path; - current_path_line_edit->set_text(current_path); } void FileSystemDock::_duplicate_operation_confirm() {