summaryrefslogtreecommitdiffstats
path: root/editor/filesystem_dock.cpp
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2021-11-30 13:46:36 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2021-11-30 13:46:36 -0300
commitec4f4c6cdaaede844d85bddc1c99e3eb6514f66e (patch)
tree3ab3bf7c50ff120289c7124aa1c46b2d198af064 /editor/filesystem_dock.cpp
parent03cfdf8cc7dd6923ebda22635c6e9dba98dd2a65 (diff)
downloadredot-engine-ec4f4c6cdaaede844d85bddc1c99e3eb6514f66e.tar.gz
Rename all methods that return `ScrollBar` nodes to `get_*_scroll_bar()`
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r--editor/filesystem_dock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp
index f40a048b75..ff9fa34f6f 100644
--- a/editor/filesystem_dock.cpp
+++ b/editor/filesystem_dock.cpp
@@ -528,7 +528,7 @@ void FileSystemDock::_navigate_to_path(const String &p_path, bool p_select_in_fa
_update_tree(_compute_uncollapsed_paths(), false, p_select_in_favorites, true);
if (display_mode == DISPLAY_MODE_SPLIT) {
_update_file_list(false);
- files->get_v_scroll()->set_value(0);
+ files->get_v_scroll_bar()->set_value(0);
}
String file_name = p_path.get_file();