Browse Source

fixed nasty bug that caused fans to loose their temps if stoppoint was changed

Maldela 9 years ago
parent
commit
feadbb2e01
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/contents/ui/PwmFan.qml

+ 1 - 1
package/contents/ui/PwmFan.qml

@@ -395,7 +395,7 @@ Rectangle {
 
             Connections {
                 target: fan
-                onMinPwmChanged: fanOffCheckBox.checked = hasTempCheckBox.checked = Qt.binding(function() { return !!fan ? fan.minPwm == 0 : false })
+                onMinPwmChanged: fanOffCheckBox.checked = Qt.binding(function() { return !!fan ? fan.minPwm == 0 : false })
             }
         }