Fix wrong labels for shift and scale #322

Merged
dominik merged 1 commits from 321-shift-scale-fix into main 2026-04-15 14:27:16 +00:00

View File

@@ -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):