Changeset 1205 in josm for trunk/src/org/openstreetmap/josm/corrector
- Timestamp:
- 2009-01-02T15:09:04+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java
r1169 r1205 76 76 77 77 final JMultilineLabel label1 = new JMultilineLabel(description); 78 label1.setMaxWidth( 400);79 p.add(label1, GBC.eop() );78 label1.setMaxWidth(600); 79 p.add(label1, GBC.eop().anchor(GBC.CENTER)); 80 80 81 81 final JMultilineLabel label2 = new JMultilineLabel( 82 82 tr("Please select which property changes you want to apply.")); 83 label2.setMaxWidth( 400);84 p.add(label2, GBC.eop() );83 label2.setMaxWidth(600); 84 p.add(label2, GBC.eop().anchor(GBC.CENTER)); 85 85 86 86 for (OsmPrimitive primitive : tagCorrectionsMap.keySet()) { … … 103 103 tagCorrections); 104 104 final JScrollPane scrollPane = new JScrollPane(table); 105 p.add(scrollPane, GBC.eop() );105 p.add(scrollPane, GBC.eop().fill(GBC.HORIZONTAL)); 106 106 107 107 tagTableMap.put(primitive, table); … … 127 127 roleCorrections); 128 128 final JScrollPane scrollPane = new JScrollPane(table); 129 p.add(scrollPane, GBC.eop() );129 p.add(scrollPane, GBC.eop().fill(GBC.HORIZONTAL)); 130 130 131 131 roleTableMap.put(primitive, table);
Note:
See TracChangeset
for help on using the changeset viewer.