Changeset 35580 in osm for applications/editors/josm


Ignore:
Timestamp:
2020-10-13T21:20:26+02:00 (4 years ago)
Author:
Klumbumbus
Message:

see #19851 - Fix line length

Location:
applications/editors/josm/plugins
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/HouseNumberTaggingTool/src/org/openstreetmap/josm/plugins/housenumbertool/LaunchAction.java

    r35579 r35580  
    2727              "home-icon32",
    2828              "Launches the HouseNumberTaggingTool dialog",
    29               Shortcut.registerShortcut("edit:housenumbertaggingtool", tr("Data: {0}", "HouseNumberTaggingTool"), KeyEvent.VK_K, Shortcut.DIRECT),
     29              Shortcut.registerShortcut("edit:housenumbertaggingtool", tr("Data: {0}", "HouseNumberTaggingTool"),
     30                KeyEvent.VK_K, Shortcut.DIRECT),
    3031              true);
    3132
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/actions/UnGlueRelationAction.java

    r35579 r35580  
    4141    public UnGlueRelationAction() {
    4242        super(tr("UnGlue Relation"), "ungluerelations", tr("Duplicate nodes, ways and relations that are used by multiple relations."),
    43                 Shortcut.registerShortcut("tools:ungluerelation", tr("More tools: {0}", tr("UnGlue Relation")), KeyEvent.VK_G, Shortcut.ALT_SHIFT),
     43                Shortcut.registerShortcut("tools:ungluerelation", tr("More tools: {0}", tr("UnGlue Relation")),
     44                    KeyEvent.VK_G, Shortcut.ALT_SHIFT),
    4445                true);
    4546        putValue("help", ht("/Action/UnGlueRelation"));
  • applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/replacegeometry/ReplaceGeometryAction.java

    r35579 r35580  
    2828    public ReplaceGeometryAction() {
    2929        super(TITLE, "dumbutils/replacegeometry", tr("Replace geometry of selected object with a new one"),
    30                 Shortcut.registerShortcut("tools:replacegeometry", tr("More tools: {0}", tr("Replace Geometry")), KeyEvent.VK_G, Shortcut.CTRL_SHIFT),
     30                Shortcut.registerShortcut("tools:replacegeometry", tr("More tools: {0}", tr("Replace Geometry")),
     31                    KeyEvent.VK_G, Shortcut.CTRL_SHIFT),
    3132                true);
    3233    }
Note: See TracChangeset for help on using the changeset viewer.