소스 검색

Minimun resolution factor 6

9and3r 10 년 전
부모
커밋
f4074da9e1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      mopidy_touchscreen/__init__.py

+ 1 - 1
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()