From 2ef66ef4c75b1f17c60cd7338bf66fdd08d25422 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 12 Jun 2021 11:30:53 -0700 Subject: [PATCH] add missing Gooey Option --- docs/Gooey-Options.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/Gooey-Options.md b/docs/Gooey-Options.md index 0951203..2d8655b 100644 --- a/docs/Gooey-Options.md +++ b/docs/Gooey-Options.md @@ -159,7 +159,10 @@ parser.add_argument('-my-arg', widget='Listbox', gooey_options={ parser.add_mutually_exclusive_group(gooey_options={ # Pre-select a specific option within a mutually exclusive group. # default behavior is to have all options unselected by default. - 'initial_selection': int + 'initial_selection': int, + # customizes the text which appears over the Radio Group + # default: "Choose one" + 'title': str }) ```