1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-05-02 21:04:18 +02:00

fix: online changes e21543

This commit is contained in:
e21536
2023-09-21 10:43:45 +02:00
parent 6955b6e292
commit b41d63ea4d
5 changed files with 54 additions and 43 deletions
@@ -174,7 +174,7 @@ class EigerPlot(QWidget):
self.image = np.transpose(self.image)
if self.checkBox_log.isChecked():
self.image = np.log(self.image)
self.image = np.log10(self.image)
self.imageItem.setImage(self.image, autoLevels=False)