mirror of https://github.com/rusefi/RomRaider.git
dashboard bugfix
git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@300 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
parent
90f2e942db
commit
6bae0f6c77
|
@ -42,8 +42,10 @@ public final class DashboardUpdateHandler implements DataUpdateHandler, Converto
|
||||||
|
|
||||||
public void notifyConvertorUpdate(EcuData updatedEcuData) {
|
public void notifyConvertorUpdate(EcuData updatedEcuData) {
|
||||||
Gauge gauge = gauges.get(updatedEcuData);
|
Gauge gauge = gauges.get(updatedEcuData);
|
||||||
gauge.resetValue();
|
if (gauge != null) {
|
||||||
gauge.refreshTitle();
|
gauge.resetValue();
|
||||||
|
gauge.refreshTitle();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void repaintDashboardPanel() {
|
private void repaintDashboardPanel() {
|
||||||
|
|
Loading…
Reference in New Issue