You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2020. It is now read-only.
The stack trace starts with an attempt to delete pointer rect inside the destructor ofxUIWidget::~ofxUIWidget() and gives the following:
mySketchDebug(23104,0xac89c2c0) malloc: *** error for object 0xd347b0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
(lldb)
Same thing happens when trying to remove all toggles at same time, e.g. dd->removeToggles() or trying to just delete the whole widget from gui altogether, e.g. gui->removeWidget("dropdown" or gui->removeWidget(dd).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Trying to remove toggles from an ofxUIDropDownList or removing the DropDownList itself causes application to crash. For example:
The stack trace starts with an attempt to delete pointer rect inside the destructor
ofxUIWidget::~ofxUIWidget()
and gives the following:mySketchDebug(23104,0xac89c2c0) malloc: *** error for object 0xd347b0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
(lldb)
Same thing happens when trying to remove all toggles at same time, e.g.
dd->removeToggles()
or trying to just delete the whole widget fromgui
altogether, e.g.gui->removeWidget("dropdown"
orgui->removeWidget(dd)
.The text was updated successfully, but these errors were encountered: