Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2008-06-05 17:52:34 +0000
committerTomasz Zarna2008-06-05 17:52:34 +0000
commit7f4c5efaf5d72d7b8b761a66e5ee319392a88701 (patch)
treef54c0282ca42b7b0aa861b46d2ef73a079ec338b
parente0ba0e8aa2cbeab041eb7fe62b46ededa00805ad (diff)
downloadeclipse.platform.team-7f4c5efaf5d72d7b8b761a66e5ee319392a88701.tar.gz
eclipse.platform.team-7f4c5efaf5d72d7b8b761a66e5ee319392a88701.tar.xz
eclipse.platform.team-7f4c5efaf5d72d7b8b761a66e5ee319392a88701.zip
bug 235661: Manual proxy configuration cannot persist proxy authentication
-rw-r--r--bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyPreferencePage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyPreferencePage.java b/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyPreferencePage.java
index e7fade1db..8452f1428 100644
--- a/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyPreferencePage.java
+++ b/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyPreferencePage.java
@@ -300,7 +300,7 @@ public class ProxyPreferencePage extends PreferencePage implements
nonHostLists = proxyService.getNonProxiedHosts();
this.nonHostComposite.setList(nonHostLists == null ? new String[] {
"localhost", "127.0.0.1" } : nonHostLists); //$NON-NLS-1$ //$NON-NLS-2$
- if (proxiesEnabled && !systemProxiesEnabled) {
+ if (!proxiesEnabled || systemProxiesEnabled) {
this.useSameProxyButton.setSelection(false);
this.enableProxyAuth.setSelection(false);
this.userid.setText(""); //$NON-NLS-1$

Back to the top