From: Daniel Kirschten Date: Thu, 16 May 2019 09:06:33 +0000 (+0200) Subject: WireConnectionPoints are now smaller X-Git-Url: https://mograsim.net/gitweb/?a=commitdiff_plain;h=c5217d7f47490bbb053bf13e94e7b5bc697e255c;p=Mograsim.git WireConnectionPoints are now smaller --- diff --git a/LogicUI/src/era/mi/gui/wires/WireConnectionPoint.java b/LogicUI/src/era/mi/gui/wires/WireConnectionPoint.java index 6c585a47..8c2df1d5 100644 --- a/LogicUI/src/era/mi/gui/wires/WireConnectionPoint.java +++ b/LogicUI/src/era/mi/gui/wires/WireConnectionPoint.java @@ -25,7 +25,7 @@ public class WireConnectionPoint implements BasicGUIComponent Color oldBG = gc.getBackground(); if(wa.length == 1) gc.setBackground(gc.getDevice().getSystemColor(GUIWire.getSWTColorConstantForBit(wa.getValue()))); - gc.fillOval(-2, -2, 4, 4); + gc.fillOval(-1, -1, 2, 2); gc.setBackground(oldBG); } @Override