From 02f47361f1f4bfcf508faf50f2e6a0bb79d02292 Mon Sep 17 00:00:00 2001 From: Peter Hamberg Date: Wed, 4 Jan 2017 07:35:41 +0100 Subject: [PATCH] Correct y axis print head size for printrbot simple Print head size settings for printrbot simple had y min and y max mixed up, making "print one at a time" always print in the wrong order. --- resources/definitions/printrbot_simple.def.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/definitions/printrbot_simple.def.json b/resources/definitions/printrbot_simple.def.json index 80801363c4..b1af5f3baa 100644 --- a/resources/definitions/printrbot_simple.def.json +++ b/resources/definitions/printrbot_simple.def.json @@ -26,10 +26,10 @@ "machine_nozzle_cool_down_speed": { "default_value": 2 }, "machine_head_with_fans_polygon": { "default_value": [ - [ 55, -20 ], - [ 55, 99999 ], - [ -49, 99999 ], - [ -49, -20 ] + [-49, 20], + [-49, -99999], + [55, 20], + [55, -99999] ] }, "gantry_height": { "default_value": 99999 },