From 07491fe499b65956c4e8b769813719e0b085a294 Mon Sep 17 00:00:00 2001 From: Paul Grell Date: Thu, 19 Mar 2015 16:02:22 -0500 Subject: [PATCH] Revert "Revert "ASM #17217 - GFE: default to smart formatter types"" This reverts commit 2495ce971f6d7a334e9767722e01317a3c6fc1d9 [formerly 111f2d19b08ded3e5ab05406f475da8245af851f]. Change-Id: I17493c7867a87fd53814fcc16c7e248a3ee7cddf Former-commit-id: 8c93f552b1af035c1de2f8d9ce71a82c85776afc --- .../raytheon/viz/gfe/dialogs/NewTextProductDialog.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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() {