Fix argument type in set_follow_focus()

This commit is contained in:
Tomasz Chabora
2019-12-30 23:42:39 +01:00
parent 5fa1905131
commit 54f70b6b50
2 changed files with 2 additions and 2 deletions

View File

@@ -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;
}