Author: dgolovin
Date: 2007-10-05 19:01:47 -0400 (Fri, 05 Oct 2007)
New Revision: 4040
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet/SeamInstallWizardPage.java
Log:
I'm trying to fix
http://jira.jboss.org/jira/browse/JBIDE-1031
I assume, that there is no problems with first Seam Web Project wizard page that also have
combos. So I find only one difference between WTP and Seam wizard pages, here it is:
Dialog.applyDialogFont(parent);
I've added this line to Seam Facet Wizard page.
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet/SeamInstallWizardPage.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet/SeamInstallWizardPage.java 2007-10-05
16:31:26 UTC (rev 4039)
+++
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/internal/project/facet/SeamInstallWizardPage.java 2007-10-05
23:01:47 UTC (rev 4040)
@@ -29,6 +29,7 @@
import org.eclipse.datatools.connectivity.internal.ui.wizards.NewCPWizardCategoryFilter;
import org.eclipse.jdt.core.JavaConventions;
import org.eclipse.jdt.internal.compiler.impl.CompilerOptions;
+import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.Wizard;
@@ -368,6 +369,7 @@
}
}
);
+ Dialog.applyDialogFont(parent);
}
/**
@@ -570,7 +572,6 @@
WizardDialog dialog = new WizardDialog(Display.getCurrent().getActiveShell(), wiz);
dialog.open();
-
if (added.size()>0) {
SeamRuntimeManager.getInstance().addRuntime(added.get(0));
getFieldEditor().setValue(added.get(0).getName());