Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Pogorzelski2010-02-10 14:15:08 +0000
committerPawel Pogorzelski2010-02-10 14:15:08 +0000
commit081b5c7708c915d92b69d5ef48b66c8df0224d79 (patch)
tree721fe07397cadecb46a3a36acbb00dc242968dec /bundles/org.eclipse.ui.net
parente2167de2bc0b8d8dd6b10e840ce8c9b4fa7a219a (diff)
downloadeclipse.platform.team-081b5c7708c915d92b69d5ef48b66c8df0224d79.tar.gz
eclipse.platform.team-081b5c7708c915d92b69d5ef48b66c8df0224d79.tar.xz
eclipse.platform.team-081b5c7708c915d92b69d5ef48b66c8df0224d79.zip
Bug 272975 - [Preferences] 'Network Connections' preference page does not inherit dialog font
Diffstat (limited to 'bundles/org.eclipse.ui.net')
-rw-r--r--bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/ProxyPreferencePage.java4
1 files changed, 3 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 7b48405f8..0a79927f4 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2009 IBM Corporation and others.
+ * Copyright (c) 2007, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -58,7 +58,9 @@ public class ProxyPreferencePage extends PreferencePage implements
PlatformUI.getWorkbench().getHelpSystem().setHelp(getControl(),
PROXY_PREFERENCE_PAGE_CONTEXT_ID);
+ applyDialogFont(composite);
initializeValues();
+
return composite;
}

Back to the top