Fix wrong labels for shift and scale (#322)

Reviewed-on: #322
This commit was merged in pull request #322.
This commit is contained in:
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):