Update screenshot and remove double minus sign

pull/1990/head
Marco Heiming 2022-06-22 14:30:01 +02:00
parent ed5fb8aee8
commit ac74ec2818
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -262,7 +262,7 @@ function draw() {
if (threeHourAvrPressure != undefined) {
if (medianPressure != undefined) {
const diff = Math.round(medianPressure - threeHourAvrPressure);
g.drawString((diff > 0 ? "+" : "-") + diff, x + 24, y + 6 + 10);
g.drawString((diff > 0 ? "+" : "") + diff, x + 24, y + 6 + 10);
}
}
}