Ignore:
Timestamp:
2014-10-29T15:24:07+01:00 (9 years ago)
Author:
stoecker
Message:

cleanup icons, mark undetected icons, set proper mimetype, delete unused icons, update geticons script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java

    r7543 r7668  
    8585    // contains all possible cases the cursor can be in the SelectAction
    8686    private static enum SelectActionCursor {
    87         rect("normal", "selection"),
    88         rect_add("normal", "select_add"),
    89         rect_rm("normal", "select_remove"),
    90         way("normal", "select_way"),
    91         way_add("normal", "select_way_add"),
    92         way_rm("normal", "select_way_remove"),
    93         node("normal", "select_node"),
    94         node_add("normal", "select_node_add"),
    95         node_rm("normal", "select_node_remove"),
    96         virtual_node("normal", "addnode"),
    97         scale("scale", null),
    98         rotate("rotate", null),
    99         merge("crosshair", null),
    100         lasso("normal", "rope"),
    101         merge_to_node("crosshair", "joinnode"),
     87        rect("normal", /* ICON(cursor/modifier/) */ "selection"),
     88        rect_add("normal", /* ICON(cursor/modifier/) */ "select_add"),
     89        rect_rm("normal", /* ICON(cursor/modifier/) */ "select_remove"),
     90        way("normal", /* ICON(cursor/modifier/) */ "select_way"),
     91        way_add("normal", /* ICON(cursor/modifier/) */ "select_way_add"),
     92        way_rm("normal", /* ICON(cursor/modifier/) */ "select_way_remove"),
     93        node("normal", /* ICON(cursor/modifier/) */ "select_node"),
     94        node_add("normal", /* ICON(cursor/modifier/) */ "select_node_add"),
     95        node_rm("normal", /* ICON(cursor/modifier/) */ "select_node_remove"),
     96        virtual_node("normal", /* ICON(cursor/modifier/) */ "addnode"),
     97        scale(/* ICON(cursor/) */ "scale", null),
     98        rotate(/* ICON(cursor/) */ "rotate", null),
     99        merge(/* ICON(cursor/) */ "crosshair", null),
     100        lasso("normal", /* ICON(cursor/modifier/) */ "rope"),
     101        merge_to_node("crosshair", /* ICON(cursor/modifier/) */ "joinnode"),
    102102        move(Cursor.MOVE_CURSOR);
    103103
Note: See TracChangeset for help on using the changeset viewer.