Skip to content

Commit

Permalink
fixes Issue #221
Browse files Browse the repository at this point in the history
allows a negative ambient temperature in roast properties
  • Loading branch information
roasterdave committed Jun 24, 2018
1 parent 376c69e commit 7d587f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/artisanlib/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27326,7 +27326,7 @@ def __init__(self, parent = None):
self.ambientedit = QLineEdit()
self.ambientedit.setText(str(aw.qmc.ambientTemp))
self.ambientedit.setMaximumWidth(50)
self.ambientedit.setValidator(QDoubleValidator(0., 200., 2, self.ambientedit))
self.ambientedit.setValidator(QDoubleValidator(-40., 200., 2, self.ambientedit))
self.ambientedit.setAlignment(Qt.AlignRight)
self.ambientedit_tempUnitsComboBox = QComboBox()
self.ambientedit_tempUnitsComboBox.setMaximumWidth(60)
Expand Down

0 comments on commit 7d587f3

Please sign in to comment.