=== modified file 'src/pipe/gui/AnimationHistorySidePanel.java'
--- src/pipe/gui/AnimationHistorySidePanel.java	2020-05-18 09:02:54 +0000
+++ src/pipe/gui/AnimationHistorySidePanel.java	2020-08-24 13:14:28 +0000
@@ -36,17 +36,16 @@
                 if (SwingUtilities.isLeftMouseButton(e)) {
                     int selected = animBox.getSelectedIndex();
                     int clicked = animBox.locationToIndex(e.getPoint());
+
                     if (clicked != -1) {
                         int steps = clicked - selected;
                         Animator anim = CreateGui.getAnimator();
                         if (steps < 0) {
                             for (int i = 0; i < Math.abs(steps); i++) {
-                                animBox.stepBackwards();
                                 anim.stepBack();
                             }
                         } else {
                             for (int i = 0; i < Math.abs(steps); i++) {
-                                animBox.stepForward();
                                 anim.stepForward();
                             }
                         }

