Cone.java
.. .. @@ -2,6 +2,7 @@ 2 2 3 3 class Cone extends Biparam implements java.io.Serializable 4 4 { 5 + //static final long serialVersionUID = -679715043452968126L;5 6 6 7 Cone() 7 8 { .. .. @@ -314,13 +315,13 @@ 314 315 return true; 315 316 } 316 317 317 - void doEditDrag(ClickInfo info)318 + void doEditDrag(ClickInfo info, boolean opposite)318 319 { 319 320 if (hitSomething == 0) 320 321 return; 321 322 if (hitSomething == 1) 322 323 { 323 - super.doEditDrag(info);324 + super.doEditDrag(info, opposite);324 325 return; 325 326 } 326 327 double deltaR = info.x - startX;