Ignore:
Timestamp:
2021-04-09T21:22:56+02:00 (5 years ago)
Author:
simon04
Message:

see #16163 - Prefer GridBagConstraints.LINE_START over GridBagConstraints.WEST

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreferencesPanel.java

    r17312 r17732  
    7979        GridBagConstraints gc = new GridBagConstraints();
    8080
    81         gc.anchor = GridBagConstraints.WEST;
     81        gc.anchor = GridBagConstraints.LINE_START;
    8282        gc.insets = new Insets(5, 5, 0, 0);
    8383        gc.fill = HORIZONTAL;
     
    149149        JPanel pnl = new AutoSizePanel();
    150150        GridBagConstraints gc = new GridBagConstraints();
    151         gc.anchor = GridBagConstraints.WEST;
     151        gc.anchor = GridBagConstraints.LINE_START;
    152152        gc.insets = new Insets(5, 5, 0, 0);
    153153        gc.fill = HORIZONTAL;
Note: See TracChangeset for help on using the changeset viewer.