Changeset 4928 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2012-02-14T11:43:15+01:00 (12 years ago)
Author:
stoecker
Message:

fix group numbers, so they stay unique also after adding new groups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Shortcut.java

    r4927 r4928  
    322322     */
    323323    public static final int GROUP_DIRECT3 = 8;
    324     public static final int GROUP__MAX = 9;
    325324    public static final int GROUP_RESERVED = 1000;
    326325    public static final int GROUPS_DEFAULT = 0;
    327     public static final int GROUPS_ALT1 = GROUP__MAX;
    328     public static final int GROUPS_ALT2 = GROUP__MAX * 2;
     326    public static final int GROUPS_ALT1 = 100;
     327    public static final int GROUPS_ALT2 = 200;
    329328
    330329    // bootstrap
Note: See TracChangeset for help on using the changeset viewer.