diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-11-30 13:46:36 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-11-30 13:46:36 -0300 |
commit | ec4f4c6cdaaede844d85bddc1c99e3eb6514f66e (patch) | |
tree | 3ab3bf7c50ff120289c7124aa1c46b2d198af064 /editor/filesystem_dock.cpp | |
parent | 03cfdf8cc7dd6923ebda22635c6e9dba98dd2a65 (diff) | |
download | redot-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.cpp | 2 |
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(); |