From f4074da9e10b206ec32f5c653f889de448638836 Mon Sep 17 00:00:00 2001 From: 9and3r <9and3r@gmail.com> Date: Sat, 23 May 2015 14:14:28 +0200 Subject: [PATCH] Minimun resolution factor 6 --- mopidy_touchscreen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy_touchscreen/__init__.py b/mopidy_touchscreen/__init__.py index 61e5572..958d584 100644 --- a/mopidy_touchscreen/__init__.py +++ b/mopidy_touchscreen/__init__.py @@ -24,7 +24,7 @@ class Extension(ext.Extension): schema = super(Extension, self).get_config_schema() schema['screen_width'] = 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['fullscreen'] = config.Boolean() schema['cache_dir'] = config.Path()