options.py 526 B

1234567891011121314151617181920
  1. # Purpose: options module
  2. # Created: 11.03.2011
  3. # Copyright (c) 2011-2019, Manfred Moitzi
  4. # License: MIT License
  5. class Options:
  6. def __init__(self):
  7. self.template_dir = None # type: str
  8. # check app data and xdata tag structures, turn this option off for a little performance boost
  9. self.check_entity_tag_structures = True
  10. self.default_text_style = 'OpenSans'
  11. self.default_dimension_text_style = 'OpenSansCondensed-Light'
  12. # Global Options
  13. options = Options()