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

Former-commit-id: 23fdfcf11f [formerly 109051a061] [formerly d96b75ca13] [formerly 52b9060f7a [formerly d96b75ca13 [formerly e59d579fc51125b7805c22dfea26b31f17d1be97]]]
Former-commit-id: 52b9060f7a
Former-commit-id: 2f1f0573a1ee55e7a82ce91d3141d8f88fd2a4b9 [formerly 78a240fded]
Former-commit-id: d29f4091ca
This commit is contained in:
Nate Jensen 2014-04-16 16:30:39 -05:00 committed by Gerrit Code Review
commit f1152bca2f

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() {