diff --git a/src/LCD4linux/plugin.py b/src/LCD4linux/plugin.py index a06a50b..dacbb29 100644 --- a/src/LCD4linux/plugin.py +++ b/src/LCD4linux/plugin.py @@ -11265,7 +11265,7 @@ def putWetter(workaround, draw, im): Feelarrow = "▲" if OldFeel < float(Feel) else "▼" OldFeel = float(cleanFeel) Feel = "%s%s" % (Feelarrow, Feel) - Feel += "°" + Feel += "°C" if trendarrows: if OldTemp_c == -88: Temparrow = "●" @@ -11273,10 +11273,10 @@ def putWetter(workaround, draw, im): Temparrow = "▲" if OldTemp_c < float(Temp_c) else "▼" OldTemp_c = float(cleanTemp_c) Temp_c = "%s%s" % (Temparrow, Temp_c) - Temp_c += "°" + Temp_c += "°C" if ConfigType.startswith("4"): if ConfigType == "4": - Temp_c += "C" + Temp_c += "°C" TextSize = int(25 * Wmulti) font = ImageFont.truetype(ConfigFont, TextSize, encoding='unic') w, h = getFsize(Temp_c, font)