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

Last change on this file since 1084 was 1084, checked in by framm, 15 years ago
  • cosmetics: rename ShortCut to Shortcut, and shortCut to shortcut
  • Property svn:eol-style set to native
File size: 521 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;
5import org.openstreetmap.josm.tools.Shortcut;
6
7import java.awt.event.KeyEvent;
8
9public class AudioFasterAction extends AudioFastSlowAction {
10
11 public AudioFasterAction() {
12 super(tr("Faster"), "audio-faster", tr("Faster Forward"),
13 Shortcut.registerShortcut("audio:faster", tr("Audio: {0}", tr("Faster")), KeyEvent.VK_F9, Shortcut.GROUP_DIRECT), true);
14 }
15}
Note: See TracBrowser for help on using the repository browser.