Ignore:
Timestamp:
2009-01-02T15:09:04+01:00 (16 years ago)
Author:
stoecker
Message:

fix bug #1949 and some other minor issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java

    r1169 r1205  
    7676
    7777            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));
    8080
    8181            final JMultilineLabel label2 = new JMultilineLabel(
    8282                    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));
    8585
    8686            for (OsmPrimitive primitive : tagCorrectionsMap.keySet()) {
     
    103103                        tagCorrections);
    104104                final JScrollPane scrollPane = new JScrollPane(table);
    105                 p.add(scrollPane, GBC.eop());
     105                p.add(scrollPane, GBC.eop().fill(GBC.HORIZONTAL));
    106106
    107107                tagTableMap.put(primitive, table);
     
    127127                        roleCorrections);
    128128                final JScrollPane scrollPane = new JScrollPane(table);
    129                 p.add(scrollPane, GBC.eop());
     129                p.add(scrollPane, GBC.eop().fill(GBC.HORIZONTAL));
    130130
    131131                roleTableMap.put(primitive, table);
Note: See TracChangeset for help on using the changeset viewer.