Revert "Revert "ASM #17217 - GFE: default to smart formatter types""

This reverts commit f4920cc0b9 [formerly f31cdc6925] [formerly 2495ce971f] [formerly b1d84d2964 [formerly 2495ce971f [formerly 111f2d19b08ded3e5ab05406f475da8245af851f]]].

Change-Id: I17493c7867a87fd53814fcc16c7e248a3ee7cddf

Former-commit-id: 3b71d36945 [formerly 07491fe499 [formerly 8c93f552b1af035c1de2f8d9ce71a82c85776afc]]
Former-commit-id: 07491fe499
Former-commit-id: b36de51998
This commit is contained in:
Paul Grell 2015-03-19 16:02:22 -05:00 committed by Gerrit Code Review
parent f4920cc0b9
commit bdf62a0cdd

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