source: josm/trunk/src/org/openstreetmap/josm/actions/audio/AudioSlowerAction.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: 398 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
8public class AudioSlowerAction extends AudioFastSlowAction {
9
10 public AudioSlowerAction() {
11 super(tr("Slower"), "audio-slower", tr("Slower Forward"), KeyEvent.VK_F9, KeyEvent.SHIFT_MASK, false);
12 }
13}
Note: See TracBrowser for help on using the repository browser.