try monitoring update everytime

This commit is contained in:
anhefti 2023-05-31 12:57:33 +02:00
parent 62a6db12c6
commit e0708a2be1

View file

@ -371,7 +371,6 @@ public final class ClientConnectionTable implements FullPageMonitoringGUIUpdate
} }
public void updateGUI() { public void updateGUI() {
if (this.needsSort) { if (this.needsSort) {
sortTable(); sortTable();
} }
@ -511,12 +510,12 @@ public final class ClientConnectionTable implements FullPageMonitoringGUIUpdate
private void update(final TableItem tableItem, final boolean force) { private void update(final TableItem tableItem, final boolean force) {
updateDuplicateColor(tableItem); updateDuplicateColor(tableItem);
if (force || this.dataChanged) { //if (force || this.dataChanged) {
updateData(tableItem); updateData(tableItem);
} //}
if (force || this.indicatorValueChanged) { //if (force || this.indicatorValueChanged) {
updateIndicatorValues(tableItem); updateIndicatorValues(tableItem);
} //}
this.dataChanged = false; this.dataChanged = false;
this.indicatorValueChanged = false; this.indicatorValueChanged = false;
} }