diff options
author | Tomasz Chabora <kobewi4e@gmail.com> | 2019-12-30 23:42:39 +0100 |
---|---|---|
committer | Tomasz Chabora <kobewi4e@gmail.com> | 2019-12-30 23:42:39 +0100 |
commit | 54f70b6b506ee460e6ef2f986158fe5abe696ae6 (patch) | |
tree | 4346f8887e8e778aee2a1998e193071dc0573405 /scene/gui/scroll_container.h | |
parent | 5fa1905131bc20e8a4a939d0edf8370091c88a50 (diff) | |
download | redot-engine-54f70b6b506ee460e6ef2f986158fe5abe696ae6.tar.gz |
Fix argument type in set_follow_focus()
Diffstat (limited to 'scene/gui/scroll_container.h')
-rw-r--r-- | scene/gui/scroll_container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/scroll_container.h b/scene/gui/scroll_container.h index d4576372ac..959bc43870 100644 --- a/scene/gui/scroll_container.h +++ b/scene/gui/scroll_container.h @@ -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(); |