Skip to content
Snippets Groups Projects
Commit 9d788b2e authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Fix native audio mac playing from start

parent 7ef84220
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,9 @@ public class NativeAudioMacHandler extends AudioHandler implements Peakable, See
@Override
public void play() {
bridge.setLoop(getContent().getPad().getPadSettings().isLoop());
if (!getContent().getPad().isPaused()) {
bridge.seek(0); // Force player to seek to 0 sec for playing from start
}
bridge.play();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment