- Timestamp:
- 2021-04-26T21:01:55+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/CheckGroup.java
r17609 r17829 7 7 import java.util.Map; 8 8 9 import javax.swing.JLabel; 9 10 import javax.swing.JPanel; 10 11 … … 35 36 JPanel panel = new JPanel(new GridLayout(rows, columns)); 36 37 38 int i = 0; 37 39 for (Check check : checks) { 38 40 check.addToPanel(panel, support); 41 i++; 42 } 43 for (; i < rows * columns; i++) { 44 // fill remaining cells, see #20792 45 panel.add(new JLabel()); 39 46 } 40 47
Note:
See TracChangeset
for help on using the changeset viewer.