Browse Source

Added new configuration options

pull/90/merge
chriskiehl 10 years ago
parent
commit
cd82b3fbc8
2 changed files with 4 additions and 1 deletions
  1. 2
      gooey/__init__.py
  2. 3
      gooey/python_bindings/gooey_decorator.py

2
gooey/__init__.py

@ -5,4 +5,4 @@ from gooey.python_bindings.gooey_parser import GooeyParser
version_file = os.path.join(os.path.dirname(__file__), 'version')
__version__ = '0.1.6'
__version__ = '0.1.7'

3
gooey/python_bindings/gooey_decorator.py

@ -64,6 +64,9 @@ def Gooey(f=None,
show_config=True,
program_name=None,
program_description=None,
default_size=(610, 530),
required_cols=3,
optional_cols=2,
dump_build_config=False):
'''
Decorator for client code's main function.

Loading…
Cancel
Save