From b32aaf5609d221f3b9604cd5ac76b6013b62d1b5 Mon Sep 17 00:00:00 2001 From: CrushedPixel Date: Tue, 4 Aug 2015 17:26:00 +0200 Subject: [PATCH] Initially set the GuiObjectManager's Keyframe Timeline's cursor position to the GuiReplayOverlay's Keyframe Timeline's cursor position --- .../java/eu/crushedpixel/replaymod/gui/GuiObjectManager.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/eu/crushedpixel/replaymod/gui/GuiObjectManager.java b/src/main/java/eu/crushedpixel/replaymod/gui/GuiObjectManager.java index e382bd40..8832729a 100644 --- a/src/main/java/eu/crushedpixel/replaymod/gui/GuiObjectManager.java +++ b/src/main/java/eu/crushedpixel/replaymod/gui/GuiObjectManager.java @@ -547,6 +547,8 @@ public class GuiObjectManager extends GuiScreen implements GuiReplayOverlay.NoOv this.zoom = 0.1; this.timelineLength = 10 * 60 * 1000; this.showMarkers = true; + + this.cursorPosition = ReplayHandler.getRealTimelineCursor(); } @Override