Removed cpu/memory

Removed cpu/memory display on JackServerSettingsDialog
This commit is contained in:
Extremesecrecy
2025-07-28 13:40:33 -07:00
parent d91d278919
commit ea34e834dd
3 changed files with 11 additions and 49 deletions
-7
View File
@@ -68,7 +68,6 @@ export default class JackHostStatus {
this.errorMessage = input.errorMessage;
this.underruns = input.underruns;
this.cpuUsage = input.cpuUsage;
this.memoryUsage = input.memoryUsage;
this.msSinceLastUnderrun = input.msSinceLastUnderrun;
this.temperaturemC = input.temperaturemC;
this.cpuFreqMax = input.cpuFreqMax;
@@ -85,7 +84,6 @@ export default class JackHostStatus {
restarting: boolean = false;
underruns: number = 0;
cpuUsage: number = 0;
memoryUsage: number = 0;
msSinceLastUnderrun: number = -5000 * 1000;
temperaturemC: number = -1000000;
cpuFreqMax: number = 0;
@@ -179,11 +177,6 @@ export default class JackHostStatus {
CPU: {cpuDisplay(status.cpuUsage)}  
</Typography>
</span>
<span style={{ color: underrunError ? RED_COLOR : GREEN_COLOR }}>
<Typography variant="caption" color="inherit">
MEM:&nbsp;{cpuDisplay(status.memoryUsage)}&nbsp;&nbsp;
</Typography>
</span>
<span style={{ color: GREEN_COLOR }}>
<Typography variant="caption" color="inherit">{tempDisplay(status.temperaturemC)}</Typography>