We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 182307c commit e025d2cCopy full SHA for e025d2c
Rakefile
@@ -66,9 +66,9 @@ namespace :build do
66
67
HipChat.log 'Building <b>blockly</b>...'
68
if CDO.localize_blockly
69
- RakeUtils.system 'MOOC_LOCALIZE=1', 'grunt'
+ RakeUtils.system 'MOOC_LOCALIZE=1', 'grunt build'
70
else
71
- RakeUtils.system 'grunt'
+ RakeUtils.system 'grunt build'
72
end
73
74
blockly/src/turtle/turtle.js
@@ -1078,7 +1078,7 @@ Turtle.drawToTurtle_ = function (distance) {
1078
}
1079
1080
Turtle.shapewaysPrintablePathPoints = Turtle.shapewaysPrintablePathPoints || [];
1081
- Turtle.shapewaysPrintablePathPoints.push([Turtle.x, Turtle.y]);
+ Turtle.shapewaysPrintablePathPoints.push([Turtle.x * retina, Turtle.y * retina]);
1082
1083
};
1084
0 commit comments