Fix Issue 141: can edit poly after pasting in SVG source
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@509 eee81c28-f429-11dd-99c0-75d572ba1dddmaster
parent
1b3ada5449
commit
c53ad929c6
|
@ -1730,19 +1730,23 @@ function SvgCanvas(c)
|
||||||
|
|
||||||
var addAllPointGripsToPoly = function() {
|
var addAllPointGripsToPoly = function() {
|
||||||
// loop through and hide all pointgrips
|
// loop through and hide all pointgrips
|
||||||
var i = current_poly_pts.length;
|
var len = current_poly_pts.length;
|
||||||
while(i) {
|
for (var i = 0; i < len; i += 2) {
|
||||||
i -= 2;
|
|
||||||
var grip = document.getElementById("polypointgrip_"+i/2);
|
var grip = document.getElementById("polypointgrip_"+i/2);
|
||||||
assignAttributes(grip, {
|
if (grip) {
|
||||||
'cx': current_poly_pts[i],
|
assignAttributes(grip, {
|
||||||
'cy': current_poly_pts[i+1],
|
'cx': current_poly_pts[i],
|
||||||
'display': 'inline'
|
'cy': current_poly_pts[i+1],
|
||||||
});
|
'display': 'inline'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
addPointGripToPoly(current_poly_pts[i], current_poly_pts[i+1],i/2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var addPointGripToPoly = function(x,y) {
|
var addPointGripToPoly = function(x,y,index) {
|
||||||
// create the container of all the point grips
|
// create the container of all the point grips
|
||||||
var pointGripContainer = document.getElementById("polypointgrip_container");
|
var pointGripContainer = document.getElementById("polypointgrip_container");
|
||||||
if (!pointGripContainer) {
|
if (!pointGripContainer) {
|
||||||
|
@ -1751,9 +1755,6 @@ function SvgCanvas(c)
|
||||||
pointGripContainer.id = "polypointgrip_container";
|
pointGripContainer.id = "polypointgrip_container";
|
||||||
}
|
}
|
||||||
|
|
||||||
// get index of this point
|
|
||||||
var index = current_poly_pts.length/2 - 1;
|
|
||||||
|
|
||||||
var pointGrip = document.getElementById("polypointgrip_"+index);
|
var pointGrip = document.getElementById("polypointgrip_"+index);
|
||||||
// create it
|
// create it
|
||||||
if (!pointGrip) {
|
if (!pointGrip) {
|
||||||
|
@ -2000,7 +2001,7 @@ function SvgCanvas(c)
|
||||||
'x2': x,
|
'x2': x,
|
||||||
'y2': y
|
'y2': y
|
||||||
});
|
});
|
||||||
addPointGripToPoly(x,y);
|
addPointGripToPoly(x,y,0);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// determine if we clicked on an existing point
|
// determine if we clicked on an existing point
|
||||||
|
@ -2057,7 +2058,7 @@ function SvgCanvas(c)
|
||||||
'x2': x,
|
'x2': x,
|
||||||
'y2': y
|
'y2': y
|
||||||
});
|
});
|
||||||
addPointGripToPoly(x,y);
|
addPointGripToPoly(x,y,(current_poly_pts.length/2 - 1));
|
||||||
}
|
}
|
||||||
keep = true;
|
keep = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue