Skip to content

Commit

Permalink
v0.4.0-RC12
Browse files Browse the repository at this point in the history
Added missing frame stepping
  • Loading branch information
SG-O committed Aug 10, 2023
1 parent 52dd76e commit 5c703ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</modules>

<properties>
<revision>0.4.0-RC11</revision>
<revision>0.4.0-RC12</revision>
<protoRevision>1.0.0-alpha</protoRevision>

<maven-compiler-plugin-version>3.11.0</maven-compiler-plugin-version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ public PlayerControls(@NotNull PlayBin playBin, Input in, Input out) {
rewind10Button.addActionListener(e -> skipTime(-10000));
playPauseButton.addActionListener(e -> playPause());
nextFrameButton.addActionListener(e -> {
playBin.pause();
skipTime(30);
});
skip10Button.addActionListener(e -> skipTime(10000));
inButton.addActionListener(e -> in());
Expand Down

0 comments on commit 5c703ad

Please sign in to comment.