Changeset 30986 in osm for applications/editors/josm/plugins/utilsplugin2/src
- Timestamp:
- 2015-02-15T18:56:06+01:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/multitagger/MultiTagAction.java
r30337 r30986 7 7 import java.awt.event.KeyEvent; 8 8 import java.util.Collection; 9 import org.openstreetmap.josm.tools.Shortcut; 9 10 10 import org.openstreetmap.josm.actions.JosmAction; 11 11 import org.openstreetmap.josm.data.osm.OsmPrimitive; 12 import org.openstreetmap.josm.tools.Shortcut; 12 13 13 14 public final class MultiTagAction extends JosmAction { 14 15 15 16 MultiTagDialog dlg; 16 17 17 18 public MultiTagAction() { 18 super(tr("Tag multiple objects [alpha]"), "bug", tr("Edit tags of object list in table"),19 super(tr("Tag multiple objects [alpha]"), null, tr("Edit tags of object list in table"), 19 20 Shortcut.registerShortcut("multitag", tr("Edit: {0}", tr("Tag multiple objects")), KeyEvent.VK_T, Shortcut.CTRL), true, true); 20 21 putValue("help", ht("/Action/MultiTag")); … … 35 36 setEnabled(getEditLayer()!=null); 36 37 } 37 38 38 39 @Override 39 40 protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) { … … 43 44 } 44 45 } 45 46 46 47 }
Note:
See TracChangeset
for help on using the changeset viewer.