Synchronizing the Replay Timeline now respects the Speed Slider's value as a stretch factor. Shift key ignores that stretch value.

This commit is contained in:
CrushedPixel
2015-07-21 23:58:56 +02:00
parent 0a71266a05
commit 9d025cfae0
2 changed files with 13 additions and 11 deletions

View File

@@ -256,6 +256,10 @@ public class GuiReplayOverlay extends Gui {
private final GuiReplaySpeedSlider speedSlider = new GuiReplaySpeedSlider(SPEED_X, TOP_ROW, I18n.format("replaymod.gui.speed"));
public double getSpeedSliderValue() {
return speedSlider.getSliderValue();
}
private boolean toolbarOpen = false;
private final DelegatingElement toolbar = new DelegatingElement() {