From 5201b9499462a80e3f5447dbc864ffb6fb34d6a0 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 24 Jul 2021 19:29:59 -0700 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index e8ca93e..61f8b65 100644 --- a/README.md +++ b/README.md @@ -407,6 +407,14 @@ The basic view is best for times when the user is familiar with Console Applicat No Config pretty much does what you'd expect: it doesn't show a configuration screen. It hops right to the `display` section and begins execution of the host program. This is the one for improving the appearance of little one-off scripts. +To use this mode, set `auto_start=True` in the Gooey decorator. + +```python +@Gooey(auto_start=True) +def main (): + ... +``` +