Issue #3021 increased width of create session dialog to fit error msg

Former-commit-id: bb915796ad [formerly f0bcc20987d814a716994f712c6132bb79963457]
Former-commit-id: 1112ca621e
This commit is contained in:
Brian Clements 2014-04-16 14:13:58 -05:00
parent 8a4f212fdb
commit ef791fe481

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