diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-02-16 15:22:16 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-03-08 17:38:21 -0400 |
commit | 2cf03ffa2337f4fea93e9b2dbb0b78d62e887625 (patch) | |
tree | 42a98c5aa48464a514d512366717da202e270878 /klippy/extras/display/icons.py | |
parent | 5acc1816242510ddfdde7eeb972a5ba70ce8a26e (diff) | |
download | kutter-2cf03ffa2337f4fea93e9b2dbb0b78d62e887625.tar.gz kutter-2cf03ffa2337f4fea93e9b2dbb0b78d62e887625.tar.xz kutter-2cf03ffa2337f4fea93e9b2dbb0b78d62e887625.zip |
display: Replace hard-coded display with new config based display
Introduce a new config based system for specifying the on-screen
contents of an lcd screen. The default screen configuration (found in
klippy/extras/display/display.cfg) is the same as the previous
hard-coded display, so this should not change behavior for existing
users.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/display/icons.py')
-rw-r--r-- | klippy/extras/display/icons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/display/icons.py b/klippy/extras/display/icons.py index a7c90de1..8f91a2b1 100644 --- a/klippy/extras/display/icons.py +++ b/klippy/extras/display/icons.py @@ -141,6 +141,6 @@ feedrate_icon = [ Icons16x16 = { 'extruder': extruder_icon, 'bed': bed_icon, 'bed_heat1': bed_heat1_icon, 'bed_heat2': bed_heat2_icon, - 'fan1': fan1_icon, 'fan2': fan2_icon, + 'fan': fan1_icon, 'fan1': fan1_icon, 'fan2': fan2_icon, 'feedrate': feedrate_icon, } |