diff options
author | Tasuku Suzuki <tasuku.suzuki@qt.io> | 2017-01-11 16:18:56 +0900 |
---|---|---|
committer | Tasuku Suzuki <tasuku.suzuki@qt.io> | 2017-01-11 16:19:05 +0900 |
commit | 559d1a3272a6dbf87139cc3a77beaddfc5f66b63 (patch) | |
tree | 286e8c0a6a4681e0e3c6a39381f6b9c3a37a3069 | |
parent | 1af8b0194218d81c07f2c3974b668b8f41c447ac (diff) |
Temperature setting is decoupled from the seat-heating button
SPEC-394
Change-Id: I27fc85dbe99db46556e4f0fc078417cf3a23c556
Signed-off-by: Tasuku Suzuki <tasuku.suzuki@qt.io>
-rw-r--r-- | app/HVAC.qml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/HVAC.qml b/app/HVAC.qml index 41cf7fa..0d60cbd 100644 --- a/app/HVAC.qml +++ b/app/HVAC.qml @@ -74,7 +74,6 @@ ApplicationWindow { side: 'Left' } HeatDegree { - enabled: leftSeat.headLevel > 0 onCurrentItemChanged: { console.log("Left Temp changed",degree) binding.leftTemperature = degree @@ -127,7 +126,6 @@ ApplicationWindow { side: 'Right' } HeatDegree { - enabled: rightSeat.headLevel > 0 onCurrentItemChanged: { console.log("Right Temp changed",degree) binding.rightTemperature = degree |