From: Ian Jackson Date: Sun, 5 Sep 2010 20:36:50 +0000 (+0100) Subject: arbitrage should be enabled by default X-Git-Tag: 0.9.9~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=jarrg-ian.git;a=commitdiff_plain;h=5130ad6df2ce5daf78e46e1d3e8a54b41f35fe99 arbitrage should be enabled by default --- diff --git a/src/net/chiark/yarrg/ControlPanel.java b/src/net/chiark/yarrg/ControlPanel.java index b4dc305..14bc5ae 100644 --- a/src/net/chiark/yarrg/ControlPanel.java +++ b/src/net/chiark/yarrg/ControlPanel.java @@ -19,7 +19,7 @@ public class ControlPanel extends JFrame { 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");