Browse Source

Small fix for Connection in minStartSpinBox

Malte Veerman 7 years ago
parent
commit
06e4467814
1 changed files with 1 additions and 1 deletions
  1. 1 1
      import/qml/FanItem.qml

+ 1 - 1
import/qml/FanItem.qml

@@ -461,7 +461,7 @@ Rectangle {
                 }
                 Connections {
                     target: fan
-                    onMinPwmChanged: minStartInput.value = Math.round(fan.minStart / 2.55)
+                    onMinStartChanged: minStartInput.value = Math.round(fan.minStart / 2.55)
                 }
             }
         }