Changeset 230 in tmcsimulator for trunk/src/tmcsim/cadsimulator


Ignore:
Timestamp:
11/07/2017 07:36:24 AM (8 years ago)
Author:
jdalbey
Message:

ConfigStatusTab?.java Improved display and fixed defect so it now uses the correct config directory.

Location:
trunk/src/tmcsim/cadsimulator/viewer
Files:
2 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/tmcsim/cadsimulator/viewer/CADServerViewer.java

    r210 r230  
    5252     * Panel to display configuration files. 
    5353     */ 
    54     private ConfigStatusPanel configPanel; 
     54    private ConfigStatusTab configPanel; 
    5555    /* 
    5656     * Panel to display Traffic Model Event Queue 
     
    137137    private void initComponents() 
    138138    { 
    139  
    140  
    141139        simulationPanel = new SimulationStatusPanel(); 
    142140        mediaPanel = new MediaStatusPanel(); 
    143         configPanel = new ConfigStatusPanel(); 
     141        configPanel = new ConfigStatusTab(); 
    144142        trafficPanel = new TrafficModelViewPanel(); 
    145143 
  • trunk/src/tmcsim/cadsimulator/viewer/TrafficModelViewPanel.form

    r210 r230  
    8585              <Properties> 
    8686                <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> 
    87                   <Font name="Noto Mono" size="12" style="0"/> 
     87                  <Font name="FreeMono" size="12" style="0"/> 
    8888                </Property> 
    8989                <Property name="model" type="javax.swing.ListModel" editor="org.netbeans.modules.form.editors2.ListModelEditor"> 
     
    155155              <Properties> 
    156156                <Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor"> 
    157                   <Font name="Noto Mono" size="15" style="0"/> 
     157                  <Font name="FreeMono" size="15" style="0"/> 
    158158                </Property> 
    159159                <Property name="model" type="javax.swing.ListModel" editor="org.netbeans.modules.form.editors2.ListModelEditor"> 
  • trunk/src/tmcsim/cadsimulator/viewer/TrafficModelViewPanel.java

    r210 r230  
    8989        btnClear = new javax.swing.JButton(); 
    9090 
    91         lstEvents.setFont(new java.awt.Font("Noto Mono", 0, 12)); // NOI18N 
     91        lstEvents.setFont(new java.awt.Font("FreeMono", 0, 12)); // NOI18N 
    9292        lstEvents.setModel(new javax.swing.AbstractListModel<String>() 
    9393        { 
     
    136136        ); 
    137137 
    138         lstIncidents.setFont(new java.awt.Font("Noto Mono", 0, 15)); // NOI18N 
     138        lstIncidents.setFont(new java.awt.Font("FreeMono", 0, 15)); // NOI18N 
    139139        lstIncidents.setModel(new javax.swing.AbstractListModel<String>() 
    140140        { 
Note: See TracChangeset for help on using the changeset viewer.