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/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • 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.