- Timestamp:
- 2021-04-09T21:22:56+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/MapRectifierWMSmenuAction.java
r16509 r17732 151 151 if (!s.url.isEmpty()) { 152 152 panel.add(serviceBtn, GBC.std()); 153 panel.add(new UrlLabel(s.url, tr("Visit Homepage")), GBC.eol().anchor(GridBagConstraints. EAST));153 panel.add(new UrlLabel(s.url, tr("Visit Homepage")), GBC.eol().anchor(GridBagConstraints.LINE_END)); 154 154 } else { 155 panel.add(serviceBtn, GBC.eol().anchor(GridBagConstraints. WEST));155 panel.add(serviceBtn, GBC.eol().anchor(GridBagConstraints.LINE_START)); 156 156 } 157 157 } -
trunk/src/org/openstreetmap/josm/data/validation/Test.java
r16553 r17732 262 262 263 263 GBC a = GBC.eol(); 264 a.anchor = GridBagConstraints. EAST;264 a.anchor = GridBagConstraints.LINE_END; 265 265 checkBeforeUpload = new JCheckBox(); 266 266 checkBeforeUpload.setSelected(testBeforeUpload); -
trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
r17621 r17732 1117 1117 public void addGui(JPanel testPanel) { 1118 1118 GBC a = GBC.eol(); 1119 a.anchor = GridBagConstraints. EAST;1119 a.anchor = GridBagConstraints.LINE_END; 1120 1120 1121 1121 testPanel.add(new JLabel(name+" :"), GBC.eol().insets(3, 0, 0, 0)); -
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/CorrelateGpxWithImages.java
r17715 r17732 619 619 gc.weightx = gc.weighty = 0.0; 620 620 gc.fill = GridBagConstraints.NONE; 621 gc.anchor = GridBagConstraints. WEST;621 gc.anchor = GridBagConstraints.LINE_START; 622 622 panelTf.add(new JLabel(tr("Photo time (from exif):")), gc); 623 623 … … 634 634 gc.weightx = gc.weighty = 0.0; 635 635 gc.fill = GridBagConstraints.NONE; 636 gc.anchor = GridBagConstraints. WEST;636 gc.anchor = GridBagConstraints.LINE_START; 637 637 panelTf.add(new JLabel(tr("Gps time (read from the above photo): ")), gc); 638 638 … … 654 654 gc.weightx = gc.weighty = 0.0; 655 655 gc.fill = GridBagConstraints.NONE; 656 gc.anchor = GridBagConstraints. WEST;656 gc.anchor = GridBagConstraints.LINE_START; 657 657 panelTf.add(new JLabel(tr("Photo taken in the timezone of: ")), gc); 658 658 -
trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreferencesPanel.java
r17312 r17732 79 79 GridBagConstraints gc = new GridBagConstraints(); 80 80 81 gc.anchor = GridBagConstraints. WEST;81 gc.anchor = GridBagConstraints.LINE_START; 82 82 gc.insets = new Insets(5, 5, 0, 0); 83 83 gc.fill = HORIZONTAL; … … 149 149 JPanel pnl = new AutoSizePanel(); 150 150 GridBagConstraints gc = new GridBagConstraints(); 151 gc.anchor = GridBagConstraints. WEST;151 gc.anchor = GridBagConstraints.LINE_START; 152 152 gc.insets = new Insets(5, 5, 0, 0); 153 153 gc.fill = HORIZONTAL; -
trunk/src/org/openstreetmap/josm/tools/GBC.java
r10649 r17732 28 28 public static GBC std() { 29 29 GBC c = new GBC(); 30 c.anchor = WEST;30 c.anchor = GridBagConstraints.LINE_START; 31 31 return c; 32 32 }
Note:
See TracChangeset
for help on using the changeset viewer.