Skip to content

Commit

Permalink
Fix incorrect reference in setting gauge colors
Browse files Browse the repository at this point in the history
This should refer to the custom gaugeStatus, not the loader status.
  • Loading branch information
blammit committed Jul 20, 2023
1 parent 29df2e3 commit d990265
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/CircularMultiGauge.qml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ Item {
startAngle: 0
endAngle: 270
value: loader.value
progressColor: Theme.statusColorValue(loader.status)
remainderColor: Theme.statusColorValue(loader.status, true)
progressColor: Theme.statusColorValue(loader.gaugeStatus)
remainderColor: Theme.statusColorValue(loader.gaugeStatus, true)
strokeWidth: gauges.strokeWidth
animationEnabled: gauges.animationEnabled
}
Expand Down

0 comments on commit d990265

Please sign in to comment.