From cfb3e90d71d99efd1d4a9763b0cf04fa174ef493 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sat, 18 Apr 2020 15:39:27 -0700 Subject: [PATCH] Fix XYmode.absolute --- fatamorgana/records.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fatamorgana/records.py b/fatamorgana/records.py index c223822..53d747e 100644 --- a/fatamorgana/records.py +++ b/fatamorgana/records.py @@ -299,7 +299,7 @@ class XYMode(Record): @property def absolute(self) -> bool: - return not relative + return not self.relative @absolute.setter def absolute(self, b: bool):