source: josm/trunk/src/org/openstreetmap/josm/actions/audio/AudioFasterAction.java@ 2685

Last change on this file since 2685 was 2017, checked in by Gubaer, 15 years ago

removed OptionPaneUtil
cleanup of deprecated Layer API
cleanup of deprecated APIs in OsmPrimitive and Way
cleanup of imports

  • Property svn:eol-style set to native
File size: 540 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions.audio;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.event.KeyEvent;
7
8import org.openstreetmap.josm.tools.Shortcut;
9
10public class AudioFasterAction extends AudioFastSlowAction {
11
12 public AudioFasterAction() {
13 super(tr("Faster"), "audio-faster", tr("Faster Forward"),
14 Shortcut.registerShortcut("audio:faster", tr("Audio: {0}", tr("Faster")), KeyEvent.VK_F9, Shortcut.GROUP_DIRECT), true);
15 }
16}
Note: See TracBrowser for help on using the repository browser.