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

Last change on this file since 1023 was 1023, checked in by stoecker, 16 years ago

close bug #1622. Keyboard shortcuts and specific OS handling

  • Property svn:eol-style set to native
File size: 510 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: Faster"), KeyEvent.VK_F9, ShortCut.GROUP_DIRECT), true);
14 }
15}
Note: See TracBrowser for help on using the repository browser.