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 / StaticPinHandle.java
index 7c3f523..0f4a152 100644 (file)
@@ -15,7 +15,7 @@ public class StaticPinHandle extends PinHandle
 
        public StaticPinHandle(Pin parent)
        {
-               super();
+               super(1);
                this.parent = parent;
                setSize(CIRCLE_DIAM, CIRCLE_DIAM);
                parent.addPinMovedListener((p) -> updatePos());
@@ -40,13 +40,13 @@ public class StaticPinHandle extends PinHandle
        {
                return getPosX() + CIRCLE_RADIUS;
        }
-       
+
        @Override
        public double getCenterY()
        {
                return getPosY() + CIRCLE_RADIUS;
        }
-       
+
        @Override
        public HandleType getType()
        {