Merge "Revert "Revert "ASM #17217 - GFE: default to smart formatter types""" into asm_14.4.1

Former-commit-id: 60344f611d90d46fffcf2a05230670b72f303916
This commit is contained in:
Paul Grell 2015-03-19 16:05:49 -05:00 committed by Gerrit Code Review
commit f47e4fdcff

View file

@ -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.
* </pre>
*
* @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() {