From 3ee95a1990ede46848b2b1a20214b65b75d0ead7 Mon Sep 17 00:00:00 2001 From: Dominik Demuth Date: Tue, 20 Jun 2023 19:22:00 +0200 Subject: [PATCH] correct description in binning dialog --- src/gui_qt/math/binning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui_qt/math/binning.py b/src/gui_qt/math/binning.py index cc38f87..2c152bb 100644 --- a/src/gui_qt/math/binning.py +++ b/src/gui_qt/math/binning.py @@ -7,7 +7,7 @@ class BinningWindow(QtWidgets.QDialog): layout = QtWidgets.QFormLayout() - self.label = QtWidgets.QLabel('Digits (negative values position left of decimal point)') + self.label = QtWidgets.QLabel('Bin width') self.spinbox = QtWidgets.QLineEdit() self.spinbox.setValidator(QtGui.QDoubleValidator()) self.spinbox.setText('1')