-
Notifications
You must be signed in to change notification settings - Fork 651
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Clear Combox #204
Comments
What do you mean by clearing it? Removing entries or clearing the editable part? |
Yes, removing entries! And what about tables? |
Hi! Lets say we have: box := ui.NewHorizontalBox()
c := ui.NewCombobox()
c.Append("foo")
box.Append(c, false) Recreate combo with different options: box.Delete(0) // delete Combobox from parent box
c.Destroy() // destroy Combobox
c := ui.NewCombobox() // recreate empty
c.Append("bar") // add new options
box.Append(c, false) // re-append it to box Tested only on Linux and Windows. On both system works fine. |
Merged with andlabs/libui#309. (I will be making a master issue for things in libui missing from package ui later.) |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
How i do clear the Combobox?
The text was updated successfully, but these errors were encountered: