From 15ec7b561f24b2af38153a1633a5bec1a9f472e9 Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Wed, 12 Mar 2025 11:49:20 -0400 Subject: [PATCH] Move to and line to in correct order --- lib/xmet/skew_t.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/xmet/skew_t.py b/lib/xmet/skew_t.py index d3f1e6d..dfe6a6e 100644 --- a/lib/xmet/skew_t.py +++ b/lib/xmet/skew_t.py @@ -118,8 +118,8 @@ class SkewTGraph(): sx, sy = self.sample_to_screen(temp, pressure) if sx_last is not None: - cr.move_to(x + sx, y + sy) - cr.line_to(x + sx_last, y + sy_last) + cr.move_to(x + sx_last, y + sy_last) + cr.line_to(x + sx, y + sy) cr.stroke() sx_last = sx