summaryrefslogtreecommitdiffstats
path: root/scene/gui/scroll_container.h
diff options
context:
space:
mode:
authorTomasz Chabora <kobewi4e@gmail.com>2019-12-30 23:42:39 +0100
committerTomasz Chabora <kobewi4e@gmail.com>2019-12-30 23:42:39 +0100
commit54f70b6b506ee460e6ef2f986158fe5abe696ae6 (patch)
tree4346f8887e8e778aee2a1998e193071dc0573405 /scene/gui/scroll_container.h
parent5fa1905131bc20e8a4a939d0edf8370091c88a50 (diff)
downloadredot-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.h2
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();