Browse Source

Swapping out method calls - issue #76

pull/77/merge
chriskiehl 10 years ago
parent
commit
d83ab61bff
1 changed files with 2 additions and 1 deletions
  1. 3
      gooey/gui/widgets/widget_pack.py

3
gooey/gui/widgets/widget_pack.py

@ -79,7 +79,8 @@ class BaseFileChooser(BaseChooser):
if result:
# self.text_box references a field on the class this is passed into
# kinda hacky, but avoided a buncha boilerplate
self.text_box.SetLabelText(result)
self.text_box.SetValue(result)
def build_dialog(style, exist_constraint=True, **kwargs):
if exist_constraint:

Loading…
Cancel
Save