From 1112ca621e3887d308ce854c477f76b9b32e072d Mon Sep 17 00:00:00 2001 From: Brian Clements Date: Wed, 16 Apr 2014 14:13:58 -0500 Subject: [PATCH] Issue #3021 increased width of create session dialog to fit error msg Former-commit-id: f0bcc20987d814a716994f712c6132bb79963457 --- .../raytheon/uf/viz/collaboration/ui/CreateSessionDialog.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cave/com.raytheon.uf.viz.collaboration.ui/src/com/raytheon/uf/viz/collaboration/ui/CreateSessionDialog.java b/cave/com.raytheon.uf.viz.collaboration.ui/src/com/raytheon/uf/viz/collaboration/ui/CreateSessionDialog.java index abebed40d7..2af30bbe76 100644 --- a/cave/com.raytheon.uf.viz.collaboration.ui/src/com/raytheon/uf/viz/collaboration/ui/CreateSessionDialog.java +++ b/cave/com.raytheon.uf.viz.collaboration.ui/src/com/raytheon/uf/viz/collaboration/ui/CreateSessionDialog.java @@ -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 * * * @@ -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() {