Skip to content

Commit

Permalink
Modify base_panel
Browse files Browse the repository at this point in the history
  • Loading branch information
Transistor427 committed Feb 8, 2024
1 parent 41c61d0 commit 80136bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panels/base_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def show_heaters(self, show=True):

def get_icon(self, device, img_size):
if device.startswith("extruder"):
if self._screen.printer.extrudercount > 1:
if self._screen.printer.extrudercount >= 2:
if device == "extruder":
device = "extruder1"
return self._gtk.Image(f"extruder-{device[8:]}", img_size, img_size)
Expand Down

0 comments on commit 80136bf

Please sign in to comment.