diff --git a/tuhi/wacom.py b/tuhi/wacom.py index 8e3e896..0d139c5 100644 --- a/tuhi/wacom.py +++ b/tuhi/wacom.py @@ -810,8 +810,8 @@ class WacomProtocolSlate(WacomProtocolSpark): # 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 + self.x_max = int(self.width / self.point_size) - 1000 + self.y_max = int(self.height / self.point_size) - 500 return super().live_mode(mode, uhid)