wacom: don't fetch the dimensions if we're stopping live mode
There's just no point to that and if the tablet is currently in live mode, it refuses the GET_WIDTH request anyway. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
9eedbe108a
commit
960904d481
|
@ -805,12 +805,13 @@ class WacomProtocolSlate(WacomProtocolSpark):
|
|||
self._on_sysevent_data_received)
|
||||
|
||||
def live_mode(self, mode, uhid):
|
||||
# Slate tablet has two models A5 and A4
|
||||
# Here, we read real tablet dimensions before
|
||||
# starting live mode
|
||||
self.update_dimensions()
|
||||
self.x_max = self.width - 1000
|
||||
self.y_max = self.height - 500
|
||||
if mode:
|
||||
# Slate tablet has two models A5 and A4
|
||||
# Here, we read real tablet dimensions before
|
||||
# starting live mode
|
||||
self.update_dimensions()
|
||||
self.x_max = self.width - 1000
|
||||
self.y_max = self.height - 500
|
||||
|
||||
return super().live_mode(mode, uhid)
|
||||
|
||||
|
|
Loading…
Reference in New Issue