fix: typo in example pause macro

This commit is contained in:
th33xitus
2021-02-04 19:36:57 +01:00
committed by GitHub
parent d1dff4d3b5
commit 9d7752a6c5

View File

@@ -30,7 +30,7 @@ gcode:
{% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %} {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %}
##### calculate save lift position ##### ##### calculate save lift position #####
{% set max_z = printer.toolhead.axis_maximum.z|float %} {% set max_z = printer.toolhead.axis_maximum.z|float %}
{% set act_z = printer.toolhead.position.x|float %} {% set act_z = printer.toolhead.position.z|float %}
{% if act_z < (max_z - 2.0) %} {% if act_z < (max_z - 2.0) %}
{% set z_safe = 2.0 %} {% set z_safe = 2.0 %}
{% else %} {% else %}