Nothing new, just another bug. Or maybe I'm just stupid. Here's my decoration which shall draw an exclamation mark:
decoration exclamation {
orientation = "NE";
noShadow = true;
SetFillColor(0,0,0);
StartPath();
MoveTo(50, 70);
LineTo(60, 0);
LineTo(40, 0);
LineTo(50, 70);
EndPath();
FillAndStrokePath();
Ellipse(46, 80, 54, 100);
}
Looks ok in the preview window, but when you look at the actual decoration, the dot is remarkably left to the center. Looks like the wind has blown it away.
"Adjusting" the ellipse to Ellipse(48, 80, 56, 100);
looks odd in the preview but yields a seemingly correct exclamation mark in the decoration.
Now who's weird here?
q.