diff --git a/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/dialogs/NewTextProductDialog.java b/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/dialogs/NewTextProductDialog.java index fc484e6f12..2c6e799b11 100644 --- a/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/dialogs/NewTextProductDialog.java +++ b/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/dialogs/NewTextProductDialog.java @@ -53,6 +53,7 @@ import com.raytheon.viz.ui.dialogs.CaveJFACEDialog; * ------------ ---------- ----------- -------------------------- * Sept 25, 2008 1562 askripsky Initial creation. * Nov 12, 2012 1298 rferrel Changes for non-blocking dialog. + * Mar 17, 2015 17217 ryu Set smart product as the default type. * * * @author askripsky @@ -267,13 +268,13 @@ public class NewTextProductDialog extends CaveJFACEDialog { buttonComp.setLayout(new GridLayout()); buttonComp.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, true)); - tableTypeButton = new Button(buttonComp, SWT.RADIO); - tableTypeButton.setText("Table"); smartTypeButton = new Button(buttonComp, SWT.RADIO); smartTypeButton.setText("Smart"); + tableTypeButton = new Button(buttonComp, SWT.RADIO); + tableTypeButton.setText("Table"); - // Default to table type - tableTypeButton.setSelection(true); + // Default to smart type + smartTypeButton.setSelection(true); } private void initNameSelection() {