Issue #2412 - Fix problem loading config in dataset discovery browser
Change-Id: I765ec92e587aa4772af1ac170be32395e698beef Former-commit-id:b3bdf87b90
[formerly4745867a18
] [formerlyb20e7e3386
] [formerlyd66d30ba32
[formerlyb20e7e3386
[formerly c478a13d2740e7ad97e02be81233bd8a2fd0dd3e]]] Former-commit-id:d66d30ba32
Former-commit-id: 0de47fd52aa147ebecde98f2eb3801a47e59542b [formerly7045c5f10c
] Former-commit-id:275c48fa11
This commit is contained in:
parent
b56e40e2db
commit
c80b965705
2 changed files with 6 additions and 1 deletions
|
@ -121,6 +121,7 @@ import com.vividsolutions.jts.geom.Coordinate;
|
|||
* Jul 05, 2013 2137 mpduff Changed data type to a single select list, changed layout.
|
||||
* Jul 26, 2031 2232 mpduff Refactored Data Delivery permissions.
|
||||
* Sep 04, 2013 2314 mpduff Load/save config dialog now non-blocking.
|
||||
* Sep 26, 2013 2412 mpduff Handle auto selecting data type.
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -1077,6 +1078,7 @@ public class DataBrowserDlg extends CaveSWTDialog implements IDataTableUpdate,
|
|||
}
|
||||
}
|
||||
datatypeList.select(i);
|
||||
handleDataTypeSelection();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -84,6 +84,7 @@ import com.raytheon.viz.ui.widgets.duallist.DualListConfig;
|
|||
* May 15, 2013 1040 mpduff Called markNotBusyInUIThread.
|
||||
* Jul 05, 2013 2137 mpduff Only a single data type can be selected.
|
||||
* Jul 05, 2013 2138 mpduff Fixed to not use filter if filter is disabled.
|
||||
* Sep 26, 2013 2412 mpduff Don't create expand items if no data type is selected.
|
||||
*
|
||||
* </pre>
|
||||
*
|
||||
|
@ -595,7 +596,9 @@ public class FilterExpandBar extends Composite implements IFilterUpdate,
|
|||
this.dataType = dataType;
|
||||
setEnvelope(envelope);
|
||||
disposeExpandItemsAndControls();
|
||||
createExpandItems();
|
||||
if (!dataType.isEmpty()) {
|
||||
createExpandItems();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue