From ab2eac8e3fd4461b198ee973fa0c90f03fe9dccf Mon Sep 17 00:00:00 2001 From: Michael Alexsander Silva Dias Date: Fri, 21 Sep 2018 04:05:50 -0300 Subject: [PATCH] Make filesystem dock's path bar start with said path written --- editor/filesystem_dock.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index bd1d355fb3..194cbd4e80 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -2248,6 +2248,7 @@ FileSystemDock::FileSystemDock(EditorNode *p_editor) { current_path = memnew(LineEdit); current_path->set_h_size_flags(SIZE_EXPAND_FILL); + current_path->set_text(path); toolbar_hbc->add_child(current_path); button_reload = memnew(Button);