Made ModelBitDisplay/ManualSwitch smaller
[Mograsim.git] / plugins / net.mograsim.logic.model / src / net / mograsim / logic / model / model / components / atomic / ModelBitDisplay.java
index ac33266..8bff082 100644 (file)
@@ -22,7 +22,7 @@ import net.mograsim.preferences.Preferences;
 public class ModelBitDisplay extends ModelComponent
 {
        private static final double width = 20;
-       private static final double height = 15;
+       private static final double height = 10;
        private static final double fontHeight = 5;
 
        public final int logicWidth;
@@ -55,7 +55,7 @@ public class ModelBitDisplay extends ModelComponent
                if (foreground != null)
                        gc.setForeground(foreground);
                gc.drawRectangle(getBounds());
-               String label = BitVectorFormatter.formatAsString(bitDisplay == null ? null : bitDisplay.getDisplayedValue());
+               String label = BitVectorFormatter.formatAsString(bitDisplay == null ? null : bitDisplay.getDisplayedValue(), true);
                Font oldFont = gc.getFont();
                Font labelFont = new Font(oldFont.getName(), fontHeight, oldFont.getStyle());
                gc.setFont(labelFont);