Merge pull request #374 from srcarter3/unidata_18.2.1

Changed the size of the GIS Import Dialog:
This commit is contained in:
tiffanycmeyer13 2021-11-02 11:10:42 -04:00 committed by GitHub
commit 5a902ef211
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,6 +78,7 @@ import com.raytheon.viz.ui.widgets.TimeRangeEntry;
* ------------ ---------- ----------- --------------------------
* Dec 5, 2012 randerso Initial creation
* Feb 15, 2013 #1629 randerso Fix saving of default plugin to prefs
* Nov 1, 2021 srcarter@ucar Made the dialog shorter to show on smaller screens
*
* </pre>
*
@ -258,14 +259,12 @@ public class GisDataStoreParametersDialog extends CaveJFACEDialog {
tableGroup.setLayoutData(layoutData);
layout = new GridLayout(1, false);
tableGroup.setLayout(layout);
layout.marginWidth = 0;
layout.marginHeight = 0;
tableGroup.setText("Table:");
tablesList = new List(tableGroup, SWT.SINGLE | SWT.BORDER
| SWT.V_SCROLL | SWT.H_SCROLL);
layoutData = new GridData(SWT.FILL, SWT.FILL, true, true);
layoutData.heightHint = tablesList.getItemHeight() * 12;
layoutData.heightHint = tablesList.getItemHeight() * 4;
tablesList.setLayoutData(layoutData);
tablesList.addSelectionListener(new SelectionAdapter() {
@Override
@ -306,6 +305,8 @@ public class GisDataStoreParametersDialog extends CaveJFACEDialog {
typeCombo.setText(pluginName);
selectedPlugin = null;
selectPlugin(pluginName);
((GridLayout)mainComp.getLayout()).marginHeight=2;
return mainComp;
}