mirror of
https://github.com/moparisthebest/davmail
synced 2025-01-06 03:08:02 -05:00
Fix wrong enableProxy in settings frame on load
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@121 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
fa216c862e
commit
1883bf4758
@ -44,7 +44,7 @@ public class SettingsFrame extends JFrame {
|
||||
panel = new JPanel(new GridLayout(5, 2));
|
||||
panel.setBorder(BorderFactory.createTitledBorder("Proxy settings"));
|
||||
|
||||
boolean enableProxy = Settings.getBooleanProperty("davmail.allowRemote");
|
||||
boolean enableProxy = Settings.getBooleanProperty("davmail.enableProxy");
|
||||
final JCheckBox enableProxyField = new JCheckBox();
|
||||
enableProxyField.setSelected(enableProxy);
|
||||
final JTextField httpProxyField = new JTextField(Settings.getProperty("davmail.proxyHost"), 15);
|
||||
|
Loading…
Reference in New Issue
Block a user