env var to turn off touch just in case my fixes dont work

This commit is contained in:
Kovid Goyal 2017-08-03 20:01:37 +05:30
parent f4d003761a
commit 1b424bb778
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -3,7 +3,7 @@
# License: GPLv3 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net> # License: GPLv3 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
from __future__ import absolute_import, division, print_function, unicode_literals from __future__ import absolute_import, division, print_function, unicode_literals
import sys import sys, os
from functools import partial from functools import partial
from PyQt5.Qt import ( from PyQt5.Qt import (
@ -17,6 +17,8 @@ from calibre.utils.monotonic import monotonic
touch_supported = False touch_supported = False
if iswindows and sys.getwindowsversion()[:2] >= (6, 2): # At least windows 7 if iswindows and sys.getwindowsversion()[:2] >= (6, 2): # At least windows 7
touch_supported = True touch_supported = True
if 'CALIBRE_NO_TOUCH' in os.environ:
touch_supported = False
HOLD_THRESHOLD = 1.0 # seconds HOLD_THRESHOLD = 1.0 # seconds
TAP_THRESHOLD = 50 # manhattan pixels TAP_THRESHOLD = 50 # manhattan pixels