Minimun resolution factor 6

This commit is contained in:
9and3r
2015-05-23 14:14:28 +02:00
parent 3cc57a85b7
commit f4074da9e1

View File

@@ -24,7 +24,7 @@ class Extension(ext.Extension):
schema = super(Extension, self).get_config_schema() schema = super(Extension, self).get_config_schema()
schema['screen_width'] = config.Integer(minimum=1) schema['screen_width'] = config.Integer(minimum=1)
schema['screen_height'] = config.Integer(minimum=1) schema['screen_height'] = config.Integer(minimum=1)
schema['resolution_factor'] = config.Integer(minimum=0) schema['resolution_factor'] = config.Integer(minimum=6)
schema['cursor'] = config.Boolean() schema['cursor'] = config.Boolean()
schema['fullscreen'] = config.Boolean() schema['fullscreen'] = config.Boolean()
schema['cache_dir'] = config.Path() schema['cache_dir'] = config.Path()