Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2003-10-10 20:55:41 +0000
committerJean Michel-Lemieux2003-10-10 20:55:41 +0000
commit8892c9e5ada18b6000dd0d4aa9627098f70aeac9 (patch)
treec777a8abd5609b0832b7b0b4f215cfd9517528bc /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/UpdateWizardPage.java
parent3016ad1cff90ae391ecd96d9bf5821c8140569bb (diff)
downloadeclipse.platform.team-8892c9e5ada18b6000dd0d4aa9627098f70aeac9.tar.gz
eclipse.platform.team-8892c9e5ada18b6000dd0d4aa9627098f70aeac9.tar.xz
eclipse.platform.team-8892c9e5ada18b6000dd0d4aa9627098f70aeac9.zip
Bug 42847 CVS dialogs do not honour dialog font preferences
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/UpdateWizardPage.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/UpdateWizardPage.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/UpdateWizardPage.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/UpdateWizardPage.java
index 1ea941248..e5cc80c6c 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/UpdateWizardPage.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/UpdateWizardPage.java
@@ -12,6 +12,7 @@ package org.eclipse.team.internal.ccvs.ui.wizards;
import org.eclipse.core.resources.IProject;
+import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.ISelectionChangedListener;
@@ -129,6 +130,7 @@ public class UpdateWizardPage extends CVSWizardPage {
seperator.setLayoutData(data);
setPageComplete(false);
+ Dialog.applyDialogFont(parent);
}
protected TreeViewer createTree(Composite parent) {

Back to the top