mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
fix DSP load indicator color
This commit is contained in:
parent
d03352cfac
commit
324938f017
1 changed files with 2 additions and 2 deletions
|
|
@ -68,11 +68,11 @@ ArdourGauge::Status
|
||||||
DspLoadIndicator::indicator () const
|
DspLoadIndicator::indicator () const
|
||||||
{
|
{
|
||||||
if (_dsp_load > 90) {
|
if (_dsp_load > 90) {
|
||||||
return ArdourGauge::Level_OK;
|
return ArdourGauge::Level_CRIT;
|
||||||
} else if (_dsp_load > 80) {
|
} else if (_dsp_load > 80) {
|
||||||
return ArdourGauge::Level_WARN;
|
return ArdourGauge::Level_WARN;
|
||||||
} else {
|
} else {
|
||||||
return ArdourGauge::Level_CRIT;
|
return ArdourGauge::Level_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue