Skip to content

Commit

Permalink
fix(graph): right color for critical value
Browse files Browse the repository at this point in the history
  • Loading branch information
orblazer committed Apr 28, 2023
1 parent bc88aef commit fe3da26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/contents/ui/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ MouseArea {
property color diskWriteColor: plasmoid.configuration.customDiskWriteColor ? plasmoid.configuration.diskWriteColor : positiveColor

property color warningColor: plasmoid.configuration.customWarningColor ? plasmoid.configuration.warningColor : neutralColor
property color criticalColor: plasmoid.configuration.customCriticalColor ? plasmoid.configuration.criticalColor : positiveColor
property color criticalColor: plasmoid.configuration.customCriticalColor ? plasmoid.configuration.criticalColor : negativeColor

// Component properties
property int containerCount: (showCpuMonitor ? 1 : 0) + (showRamMonitor ? 1 : 0) + (showNetMonitor ? 1 : 0) + (showGpuMonitor ? 1 : 0) + (showDiskMonitor ? 1 : 0)
Expand Down

0 comments on commit fe3da26

Please sign in to comment.