chiark / gitweb /
Control panel selects live servers by default
authorIan Jackson <ian@liberator.relativity.greenend.org.uk>
Sun, 22 Aug 2010 18:59:02 +0000 (19:59 +0100)
committerIan Jackson <ian@liberator.relativity.greenend.org.uk>
Sun, 22 Aug 2010 18:59:02 +0000 (19:59 +0100)
src/com/tedpearson/ypp/market/ControlPanel.java

index a00e734d86389598b9382df6e4bfe2fdd2aa56d0..a43da10d588b4ae5802147854fb7ce9a092fa16b 100644 (file)
@@ -24,8 +24,8 @@ public class ControlPanel extends JFrame {
                final JRadioButton live = new JRadioButton("Use live servers");
                final JRadioButton testing = new JRadioButton("Use testing servers");
                
-               live.setSelected(prefs.getBoolean("useLiveServers", false));
-               testing.setSelected(!prefs.getBoolean("useLiveServers", false));
+               live.setSelected(prefs.getBoolean("useLiveServers", true));
+               testing.setSelected(!prefs.getBoolean("useLiveServers", true));
 
                ButtonGroup liveortest = new ButtonGroup();
                liveortest.add(live);