Browse Source

Add Listbox height option to documentation

1.0.5-release-candidate
Johan Pauwels 4 years ago
committed by Chris
parent
commit
64a182ea86
1 changed files with 9 additions and 0 deletions
  1. 9
      docs/Gooey-Options.md

9
docs/Gooey-Options.md

@ -26,6 +26,7 @@ and with that, you're ready to rock.
* Custom Widget Options
* Textarea
* BlockCheckbox
* Listbox
* RadioGroups
* Argument Group Options
@ -96,6 +97,14 @@ parser.add_argument('-my-arg', widget='BlockCheckbox', gooey_options={
})
```
### Listbox
```python
parser.add_argument('-my-arg', widget='Listbox', gooey_options={
# height of the listbox in pixels
'height': int
})
```
### Radio Group

Loading…
Cancel
Save