mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-09 05:05:27 +00:00
SystemMonitor: ensure critical thresholds are not less than warning thresholds
This commit is contained in:
@@ -48,6 +48,20 @@ ColumnLayout {
|
|||||||
settings.memCriticalThreshold = valueMemCriticalThreshold
|
settings.memCriticalThreshold = valueMemCriticalThreshold
|
||||||
settings.diskWarningThreshold = valueDiskWarningThreshold
|
settings.diskWarningThreshold = valueDiskWarningThreshold
|
||||||
settings.diskCriticalThreshold = valueDiskCriticalThreshold
|
settings.diskCriticalThreshold = valueDiskCriticalThreshold
|
||||||
|
// Ensure critical thresholds are not less than their warning counterparts.
|
||||||
|
if (settings.cpuCriticalThreshold < settings.cpuWarningThreshold) {
|
||||||
|
settings.cpuCriticalThreshold = Math.min(100, settings.cpuWarningThreshold)
|
||||||
|
}
|
||||||
|
if (settings.tempCriticalThreshold < settings.tempWarningThreshold) {
|
||||||
|
settings.tempCriticalThreshold = Math.min(100, settings.tempWarningThreshold)
|
||||||
|
}
|
||||||
|
if (settings.memCriticalThreshold < settings.memWarningThreshold) {
|
||||||
|
settings.memCriticalThreshold = Math.min(100, settings.memWarningThreshold)
|
||||||
|
}
|
||||||
|
if (settings.diskCriticalThreshold < settings.diskWarningThreshold) {
|
||||||
|
settings.diskCriticalThreshold = Math.min(100, settings.diskWarningThreshold)
|
||||||
|
}
|
||||||
|
|
||||||
return settings
|
return settings
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user