Browse Source

fix listbox together with poll_external_updates=True

pull/473/head
liranw 6 years ago
committed by Chris
parent
commit
80490cb882
1 changed files with 3 additions and 1 deletions
  1. 4
      gooey/gui/components/widgets/listbox.py

4
gooey/gui/components/widgets/listbox.py

@ -16,7 +16,9 @@ class Listbox(TextContainer):
)
def setOptions(self, options):
self.widget.SetChoices()
self.widget.Clear()
for option in options:
self.widget.Append(option)
def setValue(self, values):
for string in values:

Loading…
Cancel
Save