We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug If you try and modify items in a ListBox using ListBox.append / insert / remove nothing will happen if Listbox.enabled = False.
ListBox
ListBox.append
insert
remove
Listbox.enabled = False
To Reproduce
from guizero import App, ListBox a = App() lb = ListBox(a, enabled= False) lb.append("this wont work because the listbox isnt enabled") a.display()
Expected behaviour
You should be able to add items programmatically regardless of the enabled state,
The text was updated successfully, but these errors were encountered:
Resolved
Sorry, something went wrong.
No branches or pull requests
Describe the bug
If you try and modify items in a
ListBox
usingListBox.append
/insert
/remove
nothing will happen ifListbox.enabled = False
.To Reproduce
Expected behaviour
You should be able to add items programmatically regardless of the enabled state,
The text was updated successfully, but these errors were encountered: