Move components to an actual resource folder (that will remain in jar)
[Mograsim.git] / net.mograsim.logic.model.editor / src / net / mograsim / logic / model / editor / handles / WirePointHandle.java
index 8fd0acd..4c0b9a3 100644 (file)
@@ -19,7 +19,7 @@ public class WirePointHandle extends Handle
 
        public WirePointHandle(HandleManager manager, GUIWire parent, int pointIndex)
        {
-               super();
+               super(3);
                this.manager = manager;
                this.parent = parent;
                this.pointIndex = pointIndex;
@@ -32,6 +32,7 @@ public class WirePointHandle extends Handle
        {
                Point p = parent.getPathPoint(pointIndex);
                moveTo(p.x, p.y);
+               callRedrawListeners();
        }
 
        @Override