Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hamberg <Zazcallabah@users.noreply.github.com>2017-01-04 09:35:41 +0300
committerGitHub <noreply@github.com>2017-01-04 09:35:41 +0300
commit02f47361f1f4bfcf508faf50f2e6a0bb79d02292 (patch)
tree3aebc8cf7229efcdded9eb64a8d9ad0b1e7f5171 /resources/definitions/printrbot_simple.def.json
parent693bc1de1c4c2a424e09304f234bd510955ce67f (diff)
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.
Diffstat (limited to 'resources/definitions/printrbot_simple.def.json')
-rw-r--r--resources/definitions/printrbot_simple.def.json8
1 files 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 },