Fixed bug caused in r1576 that made path-drawing points and line appear incorrectly when zoomed
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1662 eee81c28-f429-11dd-99c0-75d572ba1dddmaster
parent
11a318de72
commit
93d6dfa121
|
@ -6789,6 +6789,9 @@ var pathActions = this.pathActions = function() {
|
|||
|
||||
newpath.setAttribute("d", d_attr);
|
||||
|
||||
x *= current_zoom;
|
||||
y *= current_zoom;
|
||||
|
||||
// set stretchy line to latest point
|
||||
assignAttributes(stretchy, {
|
||||
'x1': x,
|
||||
|
|
Loading…
Reference in New Issue