Author: rob.stryker(a)jboss.com
Date: 2007-05-31 13:42:15 -0400 (Thu, 31 May 2007)
New Revision: 2084
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/AbstractJBossRuntimeWizardFragment.java
Log:
added maximum widths to the two areas i control. Not sure if it fixes the issue.
(EXIN-478)
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/AbstractJBossRuntimeWizardFragment.java
===================================================================
---
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/AbstractJBossRuntimeWizardFragment.java 2007-05-31
17:33:11 UTC (rev 2083)
+++
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/AbstractJBossRuntimeWizardFragment.java 2007-05-31
17:42:15 UTC (rev 2084)
@@ -103,7 +103,7 @@
{
this.handle = handle;
- Composite main = new Composite(parent, SWT.BORDER);
+ Composite main = new Composite(parent, SWT.NONE);
main.setLayout(new FormLayout());
updateJREs();
@@ -246,7 +246,7 @@
// create internal widgets
- nameLabel = new Label(nameComposite, SWT.None);
+ nameLabel = new Label(nameComposite, SWT.NONE);
nameLabel.setText(Messages.wizardFragmentNameLabel);
nameText = new Text(nameComposite, SWT.BORDER);
@@ -566,7 +566,7 @@
}
private void createConfigurationComposite(Composite main) {
- configComposite = new Composite(main, SWT.BORDER);
+ configComposite = new Composite(main, SWT.NONE);
FormData cData = new FormData();
cData.left = new FormAttachment(0,5);
Show replies by date