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

Last change on this file since 816 was 627, checked in by framm, 16 years ago
  • Property svn:eol-style set to native
File size: 379 bytes
RevLine 
[563]1// License: GPL. Copyright 2007 by Immanuel Scholz and others
[626]2package org.openstreetmap.josm.actions.audio;
3
4import static org.openstreetmap.josm.tools.I18n.tr;
5
6import java.awt.event.KeyEvent;
7
[563]8public class AudioFasterAction extends AudioFastSlowAction {
[626]9
10 public AudioFasterAction() {
[563]11 super(tr("Faster"), "audio-faster", tr("Faster Forward"), KeyEvent.VK_F9, 0, true);
[626]12 }
13}
Note: See TracBrowser for help on using the repository browser.