Added get_v_scroll to item list, issue 5343

(cherry picked from commit 63fd8f863b)
This commit is contained in:
Paulb23 2016-09-09 15:20:57 +01:00 committed by Rémi Verschelde
parent 20c3b35dd5
commit 04ade4d639
2 changed files with 4 additions and 0 deletions

View file

@ -1358,6 +1358,8 @@ void ItemList::_bind_methods(){
ObjectTypeDB::bind_method(_MD("ensure_current_is_visible"),&ItemList::ensure_current_is_visible);
ObjectTypeDB::bind_method(_MD("get_v_scroll"),&ItemList::get_v_scroll);
ObjectTypeDB::bind_method(_MD("_scroll_changed"),&ItemList::_scroll_changed);
ObjectTypeDB::bind_method(_MD("_input_event"),&ItemList::_input_event);

View file

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