Changeset 34603 in osm for applications/editors/josm
- Timestamp:
- 2018-08-27T13:22:36+02:00 (6 years ago)
- Location:
- applications/editors/josm/plugins/openjfx
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openjfx/build.xml
r34602 r34603 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="141 53"/>6 <property name="plugin.main.version" value="14183"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/openjfx/src/org/openstreetmap/josm/plugins/openjfx/OpenJfxPlugin.java
r34602 r34603 2 2 package org.openstreetmap.josm.plugins.openjfx; 3 3 4 import org.openstreetmap.josm.io.audio.AudioPlayer; 4 5 import org.openstreetmap.josm.plugins.Plugin; 5 6 import org.openstreetmap.josm.plugins.PluginInformation; 7 import org.openstreetmap.josm.plugins.openjfx.io.audio.JavaFxMediaPlayer; 6 8 7 9 /** … … 16 18 public OpenJfxPlugin(PluginInformation info) { 17 19 super(info); 20 AudioPlayer.setSoundPlayerClass(JavaFxMediaPlayer.class); 18 21 } 19 22 }
Note:
See TracChangeset
for help on using the changeset viewer.