update for fonts

This commit is contained in:
Greg DiCristofaro 2020-04-02 16:08:43 -04:00
parent 5f1c9cc543
commit f54e9dc9dd
2 changed files with 0 additions and 8 deletions

View File

@ -427,12 +427,6 @@
<Component class="javax.swing.JTextPane" name="outputViewPane"> <Component class="javax.swing.JTextPane" name="outputViewPane">
<Properties> <Properties>
<Property name="editable" type="boolean" value="false"/> <Property name="editable" type="boolean" value="false"/>
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
<Font name="Courier New" size="11" style="0"/>
</Property>
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="null"/>
</Property>
</Properties> </Properties>
</Component> </Component>
</SubComponents> </SubComponents>

View File

@ -290,8 +290,6 @@ public class StringsContentPanel extends javax.swing.JPanel {
add(controlPanel, java.awt.BorderLayout.NORTH); add(controlPanel, java.awt.BorderLayout.NORTH);
outputViewPane.setEditable(false); outputViewPane.setEditable(false);
outputViewPane.setFont(new java.awt.Font("Courier New", 0, 11)); // NOI18N
outputViewPane.setPreferredSize(null);
outputScrollPane.setViewportView(outputViewPane); outputScrollPane.setViewportView(outputViewPane);
add(outputScrollPane, java.awt.BorderLayout.CENTER); add(outputScrollPane, java.awt.BorderLayout.CENTER);