mirror of
https://github.com/godotengine/godot.git
synced 2025-11-02 06:31:13 +00:00
Rename all methods that return ScrollBar nodes to get_*_scroll_bar()
This commit is contained in:
parent
03cfdf8cc7
commit
ec4f4c6cda
16 changed files with 31 additions and 31 deletions
|
|
@ -1740,11 +1740,11 @@ void EditorHelp::search_again(bool p_search_previous) {
|
|||
}
|
||||
|
||||
int EditorHelp::get_scroll() const {
|
||||
return class_desc->get_v_scroll()->get_value();
|
||||
return class_desc->get_v_scroll_bar()->get_value();
|
||||
}
|
||||
|
||||
void EditorHelp::set_scroll(int p_scroll) {
|
||||
class_desc->get_v_scroll()->set_value(p_scroll);
|
||||
class_desc->get_v_scroll_bar()->set_value(p_scroll);
|
||||
}
|
||||
|
||||
void EditorHelp::update_toggle_scripts_button() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue