Fix argument type in set_follow_focus()
This commit is contained in:
parent
5fa1905131
commit
54f70b6b50
@ -514,7 +514,7 @@ bool ScrollContainer::is_following_focus() const {
|
||||
return follow_focus;
|
||||
}
|
||||
|
||||
void ScrollContainer::set_follow_focus(int p_follow) {
|
||||
void ScrollContainer::set_follow_focus(bool p_follow) {
|
||||
follow_focus = p_follow;
|
||||
}
|
||||
|
||||
|
@ -95,7 +95,7 @@ public:
|
||||
void set_deadzone(int p_deadzone);
|
||||
|
||||
bool is_following_focus() const;
|
||||
void set_follow_focus(int p_follow);
|
||||
void set_follow_focus(bool p_follow);
|
||||
|
||||
HScrollBar *get_h_scrollbar();
|
||||
VScrollBar *get_v_scrollbar();
|
||||
|
Loading…
Reference in New Issue
Block a user