Made Validation prettier.

This commit is contained in:
jupfi 2024-04-01 17:56:58 +02:00
parent 2c9c2f82e1
commit 52d0bca29e

View file

@ -232,11 +232,11 @@ class MeasurementView(ModuleView):
validator (QValidator): The validator to use for the widget. validator (QValidator): The validator to use for the widget.
""" """
if validator.validate(widget.text(), 0) == QValidator.State.Acceptable: if validator.validate(widget.text(), 0) == QValidator.State.Acceptable:
widget.setStyleSheet("QLineEdit { background-color: transparent; }") widget.setStyleSheet("")
elif validator.validate(widget.text(), 0) == QValidator.State.Intermediate: elif validator.validate(widget.text(), 0) == QValidator.State.Intermediate:
widget.setStyleSheet("QLineEdit { background-color: yellow; }") widget.setStyleSheet("QLineEdit { background-color: yellow;}")
else: else:
widget.setStyleSheet("QLineEdit { background-color: red; }") widget.setStyleSheet("QLineEdit { background-color: red;}")
class MeasurementDialog(QDialog): class MeasurementDialog(QDialog):
"""This Dialog is shown when the measurement is started and therefore blocks the main window. """This Dialog is shown when the measurement is started and therefore blocks the main window.