bed_level: Fix incorrectly assigned variable
This commit is contained in:
parent
2626899d53
commit
2ffe6809fd
@ -47,7 +47,7 @@ class BedLevelPanel(ScreenPanel):
|
|||||||
yconf = self._screen.printer.get_config_section("stepper_y")
|
yconf = self._screen.printer.get_config_section("stepper_y")
|
||||||
x = int(int(xconf['position_max'])/4)
|
x = int(int(xconf['position_max'])/4)
|
||||||
y = int(int(yconf['position_max'])/4)
|
y = int(int(yconf['position_max'])/4)
|
||||||
screws = [
|
self.screws = [
|
||||||
[x, y],
|
[x, y],
|
||||||
[x*3, y],
|
[x*3, y],
|
||||||
[x, y*3],
|
[x, y*3],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user