From 4c5341bb954f98cb883aa8ce6194f0ec94d303ab Mon Sep 17 00:00:00 2001 From: Dominik Demuth Date: Wed, 15 Apr 2026 14:26:42 +0000 Subject: [PATCH] Fix wrong labels for shift and scale --- src/gui_qt/data/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui_qt/data/container.py b/src/gui_qt/data/container.py index 7364579..b029f44 100644 --- a/src/gui_qt/data/container.py +++ b/src/gui_qt/data/container.py @@ -476,7 +476,7 @@ class ExperimentContainer(QtCore.QObject): self.data.y = self.data.y * scale_y + shift_y self.data.y_err = self.data.y_err * scale_y - self.update({'shift': scaling_factor, 'scale': shift_factor}) + self.update({'scale': scaling_factor, 'shift': shift_factor}) def get_namespace(self, i: int = None, j: int = None) -> dict: if (i is None) and (j is None):