Temp_panel: put devices in a scroll (#436)

* Temp_panel: put devices in a scroll

* Tweak margins

* Tpanel: Fix whitespace in message

* Fix #429 temperature_fan not updating target
This commit is contained in:
Alfredo Monclus
2022-01-17 03:13:46 -03:00
committed by GitHub
parent 8dd5c64006
commit 5d3bae8ff9
3 changed files with 18 additions and 9 deletions

View File

@@ -188,7 +188,7 @@ class Printer:
def get_fans(self):
fans = ["fan"] if len(self.get_config_section_list("fan")) > 0 else []
fan_types = ["controller_fan", "fan_generic", "heater_fan", "temperature_fan"]
fan_types = ["controller_fan", "fan_generic", "heater_fan"]
for type in fan_types:
for f in self.get_config_section_list("%s " % type):
fans.append(f)