Browse Source

Issue #92 - missing return statement

pull/94/head
chriskiehl 9 years ago
parent
commit
6ec6a3a510
1 changed files with 1 additions and 1 deletions
  1. 2
      gooey/gui/widgets/widget_pack.py

2
gooey/gui/widgets/widget_pack.py

@ -171,7 +171,7 @@ class DropdownPayload(WidgetPack):
elif self.widget.GetValue() and self.option_string:
return '{} {}'.format(self.option_string, self.widget.GetValue())
else:
self.widget.GetValue()
return self.widget.GetValue()
def _SetValue(self, text):
# used for testing

Loading…
Cancel
Save