chiark / gitweb /
Merge branch 'tidy' into 'main'
[jarrg-ian.git] / src / net / chiark / yarrg / ControlPanel.java
index b4dc3055450ee92f32e07a5236e34bee344dafa7..4636964d8c349cbf236c9147c495b15966829497 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 toPCTB = new JCheckBox("Upload to PCTB?", prefs.getBoolean("uploadToPCTB", false));
                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);