Print

Print


Author: [log in to unmask]
Date: Mon May 11 01:52:20 2015
New Revision: 2941

Log:
status to the front

Modified:
    java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/MonitoringApplicationFrame.java
    java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/SystemStatusPanel.java

Modified: java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/MonitoringApplicationFrame.java
 =============================================================================
--- java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/MonitoringApplicationFrame.java	(original)
+++ java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/MonitoringApplicationFrame.java	Mon May 11 01:52:20 2015
@@ -136,14 +136,14 @@
         // Create the tabbed pane for content in bottom of left panel such as log table and system monitor.
         final JTabbedPane tableTabbedPane = new JTabbedPane();
 
-        // Create the log table and add it to the tabs.
-        this.logPanel = new LogPanel(application.getConfigurationModel(), application);
-        tableTabbedPane.addTab("Log Messages", this.logPanel);
-
         // Create the system monitor.
         // systemStatusTable = new SystemStatusTable();
         this.systemStatusPanel = new SystemStatusPanel();
         tableTabbedPane.addTab("System Status Monitor", this.systemStatusPanel);
+
+        // Create the log table and add it to the tabs.
+        this.logPanel = new LogPanel(application.getConfigurationModel(), application);
+        tableTabbedPane.addTab("Log Messages", this.logPanel);
 
         // Add the trigger diagnostics tables.
         this.triggerPanel = new TriggerDiagnosticsPanel();

Modified: java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/SystemStatusPanel.java
 =============================================================================
--- java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/SystemStatusPanel.java	(original)
+++ java/trunk/monitoring-app/src/main/java/org/hps/monitoring/application/SystemStatusPanel.java	Mon May 11 01:52:20 2015
@@ -38,7 +38,7 @@
         super(new BorderLayout());
         final JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, new JScrollPane(this.statusTable),
                 new JScrollPane(this.eventsTable));
-        splitPane.setDividerLocation(50);
+        splitPane.setDividerLocation(150);
         this.add(splitPane, BorderLayout.CENTER);
     }