dgus_display: DPM: Keep the target temp visible when heated

This commit is contained in:
Desuuuu 2021-09-10 23:02:51 +02:00
parent b056a16356
commit f2831111e8
No known key found for this signature in database
GPG Key ID: 85943F4B2C2CE0DC
1 changed files with 1 additions and 1 deletions

View File

@ -461,7 +461,7 @@ class MenuHome(Menu):
icons.append(name)
temp = self.heaters[name].get_temp(eventtime)
current = "%.0f" % temp[0]
if temp[1] > 0 and abs(temp[0] - temp[1]) > 2:
if temp[1] > 0:
target = "%.0f" % temp[1]
else:
target = ""