Merge "Issue #3021 increased width of create session dialog to fit error msg" into development

Former-commit-id: e59d579fc51125b7805c22dfea26b31f17d1be97
This commit is contained in:
Nate Jensen 2014-04-16 16:30:39 -05:00 committed by Gerrit Code Review
commit d96b75ca13

View file

@ -93,6 +93,7 @@ import com.raytheon.viz.ui.editor.IMultiPaneEditor;
* Feb 7, 2014 2699 bclement removed handle validation
* Feb 11, 2014 2699 bclement require non-blank handle
* Mar 06, 2014 2848 bclement moved session creation logic to separate method
* Apr 16, 2014 3021 bclement increased width of dialog
*
* </pre>
*
@ -138,7 +139,7 @@ public class CreateSessionDialog extends CaveSWTDialog {
label.setText("Name: ");
nameTF = new Text(body, SWT.BORDER);
GridData gd = new GridData(SWT.FILL, SWT.FILL, true, true);
gd.minimumWidth = 200;
gd.minimumWidth = 300;
nameTF.setLayoutData(gd);
VerifyListener validNameListener = new VerifyListener() {