braitsch / ofxDatGui

Simple to use, fully customizable, high-resolution graphical user interface for openFrameworks

Home Page:https://braitsch.github.io/ofxDatGui/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

scrollView move and remove clear entire scrollview

CptOrange16 opened this issue · comments

Hello
I've been experimenting with the scrollview and I'm trying to remove a single element on the click of a button:
myScrollView->remove(selectedIndex);
and also move a single element from a certain index to another:

if (e.target == moveButton) {
		int index = 0;
		myScrollView->move(selectedIndex, index);
}

Whenever I use any of those methods, after updating the scrollview just clears.
Do you have any idea on what may be causing this problem?
Thanks
(if you need any more information let me know i'll update this)

Hi, both the move and remove functions appear to be working as expected. Does the ScrollViewExample project reproduce the behavior you're experiencing?