Changeset 13750 in josm for trunk/src/org
- Timestamp:
- 2018-05-13T12:26:15+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/imagery/WMTSLayerSelection.java
r13748 r13750 27 27 import org.openstreetmap.josm.tools.GBC; 28 28 29 /** 30 * 31 * Class for displaying WMTS layer selection panel 32 * 33 */ 29 34 public class WMTSLayerSelection extends JPanel { 30 35 private List<Entry<String, List<Layer>>> layers; 31 36 private JTable list; 32 37 38 /** 39 * 40 * @param layers list of grouped layers (by tileMatrixSet and name) 41 */ 33 42 public WMTSLayerSelection(List<Entry<String, List<Layer>>> layers) { 34 43 super(new GridBagLayout()); … … 81 90 }); 82 91 list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); 83 // list.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);84 92 list.setAutoCreateRowSorter(true); 85 93 list.setRowSelectionAllowed(true);
Note:
See TracChangeset
for help on using the changeset viewer.