Skip to content

Commit

Permalink
Merge pull request Klipper3d#69 from jpcurti/50-different-xyz-values-…
Browse files Browse the repository at this point in the history
…on-webui-and-screen

Get positions when drawing move menu
  • Loading branch information
SupremeCake17 authored Jul 1, 2024
2 parents 60515df + fea6b70 commit 9eb1ecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions klippy/extras/e3v3se_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -3090,6 +3090,7 @@ def Draw_Move_Menu(self):
option if available. It also handles drawing the menu cursor and separators.
"""
self.Clear_Main_Window()
self.pd.get_additional_values()
# Draw "Move" on header
self.lcd.draw_icon(
False,
Expand Down
2 changes: 1 addition & 1 deletion klippy/extras/printerInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def update_variable(self):
"extruder").get_status(self.reactor.monotonic())
fan = self.printer.lookup_object(
"fan").get_status(self.reactor.monotonic())
fanSpeed = fan['speed']
fanSpeed = fan['speed'] * 100
Update = False
try:
if self.thermalManager["temp_bed"]["celsius"] != int(bed["temperature"]):
Expand Down

0 comments on commit 9eb1ecc

Please sign in to comment.