From 6501c2c398a9dd159e770a72ac72d1d7f9620a63 Mon Sep 17 00:00:00 2001 From: "steve.naples" Date: Thu, 30 Jan 2014 21:03:38 +0000 Subject: [PATCH] ASM #290 Change-Id: Id6160e628c4fe3c4c62ef58ccb2b7624268e64d4 Former-commit-id: 53b6ac674a3b7bbce71ce2a81b5bb3715baeaa13 --- .../raytheon/viz/mpe/ui/dialogs/gagetable/GageTableDlg.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cave/com.raytheon.viz.mpe.ui/src/com/raytheon/viz/mpe/ui/dialogs/gagetable/GageTableDlg.java b/cave/com.raytheon.viz.mpe.ui/src/com/raytheon/viz/mpe/ui/dialogs/gagetable/GageTableDlg.java index fcae44e48f..94498d7002 100644 --- a/cave/com.raytheon.viz.mpe.ui/src/com/raytheon/viz/mpe/ui/dialogs/gagetable/GageTableDlg.java +++ b/cave/com.raytheon.viz.mpe.ui/src/com/raytheon/viz/mpe/ui/dialogs/gagetable/GageTableDlg.java @@ -103,6 +103,7 @@ import com.raytheon.viz.mpe.ui.dialogs.gagetable.xml.GageTableSortType; * ------------ ---------- ----------- -------------------------- * May 28, 2009 2476 mpduff Initial creation. * Mar 08, 2013 15725 snaples Updated to fix resort issues when editing value. + * Jan 28, 2014 16994 snaples Updated populateGridCombo to get correct filename prefix for matching up selection. * * * @@ -487,7 +488,7 @@ public class GageTableDlg extends JFrame implements IEditTimeChangedListener { if (columnData.get(i).isDataColumn()) { gridCombo.addItem(columnData.get(i).getName()); if (selectedGrid - .equalsIgnoreCase(columnData.get(i).getPrefix())) { + .equalsIgnoreCase(columnData.get(i).getProductDescriptor().getProductFilenamePrefix())) { gridComboSelection = gridSelectionIndex; } gridSelectionIndex++;