diff options
author | Alexander Holland <alexander.holland@live.de> | 2018-03-13 15:19:04 +0100 |
---|---|---|
committer | Alexander Holland <alexander.holland@live.de> | 2018-03-13 15:19:43 +0100 |
commit | 73146af740387ce0662960d8508429644c0fd484 (patch) | |
tree | ed54c7d387e08fd5bcfd18eb084304d930496147 /scene/gui/item_list.h | |
parent | 4f1b87265e1e74b1fdd0aa0aa59a9daf03fd3f40 (diff) | |
download | redot-engine-73146af740387ce0662960d8508429644c0fd484.tar.gz |
expose Itemlist.move_item and optimize functionality
Diffstat (limited to 'scene/gui/item_list.h')
-rw-r--r-- | scene/gui/item_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/item_list.h b/scene/gui/item_list.h index 7f34a250bd..0fa0dd415b 100644 --- a/scene/gui/item_list.h +++ b/scene/gui/item_list.h @@ -169,7 +169,7 @@ public: void set_current(int p_current); int get_current() const; - void move_item(int p_item, int p_to_pos); + void move_item(int p_from_idx, int p_to_idx); int get_item_count() const; void remove_item(int p_idx); |