chiark / gitweb /
control panel: put Yarrg tickbox above PCTB one
[jarrg-ian.git] / src / net / chiark / yarrg / ControlPanel.java
index b4dc3055450ee92f32e07a5236e34bee344dafa7..3649335b255320a8076def897b89bf9e9aa53f53 100644 (file)
@@ -15,11 +15,11 @@ public class ControlPanel extends JFrame {
        }
        
        public ControlPanel() {
-               super("Jarrg Control Panel");
+               super("Jarrg Settings");
                final Preferences prefs = Preferences.userNodeForPackage(getClass());
                final JCheckBox toPCTB = new JCheckBox("Upload to PCTB?", prefs.getBoolean("uploadToPCTB", true));
                final JCheckBox toYarrg = new JCheckBox("Upload to Yarrg?", prefs.getBoolean("uploadToYarrg", true));
-               final JCheckBox showArbitrage = new JCheckBox("Show arbitrage?", prefs.getBoolean("showArbitrage", false));
+               final JCheckBox showArbitrage = new JCheckBox("Show arbitrage?", prefs.getBoolean("showArbitrage", true));
 
                final JRadioButton live = new JRadioButton("Use live servers");
                final JRadioButton testing = new JRadioButton("Use testing servers");
@@ -38,8 +38,8 @@ public class ControlPanel extends JFrame {
                final JCheckBox enableDebug = new JCheckBox("Write debug files?", prefs.getBoolean("writeDebugFiles", false));
 
                setLayout(new GridLayout(8,1));
-               add(toPCTB);
                add(toYarrg);
+               add(toPCTB);
                add(showArbitrage);
                add(live);
                add(testing);