diff --git a/swing/src/net/sf/openrocket/gui/configdialog/FreeformFinSetConfig.java b/swing/src/net/sf/openrocket/gui/configdialog/FreeformFinSetConfig.java index 26deb3540..37ccc6118 100644 --- a/swing/src/net/sf/openrocket/gui/configdialog/FreeformFinSetConfig.java +++ b/swing/src/net/sf/openrocket/gui/configdialog/FreeformFinSetConfig.java @@ -424,13 +424,7 @@ public class FreeformFinSetConfig extends FinSetConfig { Point2D.Double point = getCoordinates(event); finset.setPoint(dragIndex, point.x, point.y); - - final double bodyFront = -finset.getAxialFront(); - if(0 == dragIndex && bodyFront > point.x){ - dragIndex = 1; - } - updateFields(); } @@ -449,7 +443,6 @@ public class FreeformFinSetConfig extends FinSetConfig { // if ctrl+click, delete point try { Point2D.Double point = getCoordinates(event); - System.err.println(String.format("---- Removing Point %d @ %g, %g", clickIndex, point.x, point.y)); finset.removePoint(clickIndex); } catch (IllegalFinPointException ignore) { log.error("Ignoring IllegalFinPointException while dragging, dragIndex=" + dragIndex + ". This is likely an internal error.");