Add back caveat for fully selected shapes, since code to remove handles when a shape is fully selected is in the paper fork we are using

This commit is contained in:
DD 2017-10-16 11:14:08 -04:00
parent 7705be1ce0
commit 946b6b0d87

View file

@ -96,6 +96,10 @@ class ReshapeTool extends paper.Tool {
if (!item.segment.selected) {
return false;
}
// If the entire shape is selected, handles are hidden
if (item.item.fullySelected) {
return false;
}
}
return true;
};
@ -107,6 +111,10 @@ class ReshapeTool extends paper.Tool {
if (!item.segment.selected) {
return false;
}
// If the entire shape is selected, handles are hidden
if (item.item.fullySelected) {
return false;
}
}
return true;
};