diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2016-09-09 15:20:57 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2016-09-09 15:20:57 +0100 |
commit | 63fd8f863b731ae524205393d178aa55aad8b837 (patch) | |
tree | 65013412cfc9b72cdc60c05364828812ad324817 /scene/gui/item_list.h | |
parent | 8af99ef1c6499ff485e81b0859cf3b123661d4ab (diff) |
Added get_v_scroll to item list, issue 5343
Diffstat (limited to 'scene/gui/item_list.h')
-rw-r--r-- | scene/gui/item_list.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/item_list.h b/scene/gui/item_list.h index 91c74b5291..cb5908bc79 100644 --- a/scene/gui/item_list.h +++ b/scene/gui/item_list.h @@ -195,6 +195,8 @@ public: void set_icon_scale(real_t p_scale); real_t get_icon_scale() const; + VScrollBar *get_v_scroll() { return scroll_bar; } + ItemList(); ~ItemList(); }; |