[fix #488] Dragging first fin point works correctly

This commit is contained in:
Daniel_M_Williams 2018-12-01 12:43:55 -05:00
parent 15c00620bc
commit fda3ae839f

View File

@ -424,6 +424,10 @@ public class FreeformFinSetConfig extends FinSetConfig {
Point2D.Double point = getCoordinates(event);
finset.setPoint(dragIndex, point.x, point.y);
if(0 == dragIndex && 0 > point.x){
dragIndex = 1;
}
updateFields();
}