We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2970e9d commit ec04e53Copy full SHA for ec04e53
Marlin/src/gcode/bedlevel/G26.cpp
@@ -503,8 +503,8 @@ inline bool prime_nozzle() {
503
const xyz_pos_t p4 = { x_offset, Y_BED_SIZE - y_offset, g26_layer_height };
504
505
// Small prime
506
- const xyz_pos_t pp1 = { x_gp_size + x_offset, y_offset + 10, g26_layer_height };
507
- const xyz_pos_t pp2 = { X_BED_SIZE - x_gp_size - x_offset, y_offset + 10, g26_layer_height };
+ const xyz_pos_t pp1 = { X_BED_SIZE - x_gp_size - x_offset, y_offset + 10, g26_layer_height };
+ const xyz_pos_t pp2 = { x_gp_size + x_offset, y_offset + 10, g26_layer_height };
508
print_line_from_here_to_there(
509
pp1,
510
pp2
0 commit comments