From 992655ff10bc0a32c9dccdac8dfbccf1bd79ccd1 Mon Sep 17 00:00:00 2001 From: yugecin Date: Sun, 13 Nov 2016 01:19:59 +0100 Subject: [PATCH] only show arrow when slider has been clicked initially --- src/itdelatrisu/opsu/objects/Slider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/itdelatrisu/opsu/objects/Slider.java b/src/itdelatrisu/opsu/objects/Slider.java index b71cb234..53035ca8 100644 --- a/src/itdelatrisu/opsu/objects/Slider.java +++ b/src/itdelatrisu/opsu/objects/Slider.java @@ -301,7 +301,7 @@ public class Slider extends GameObject { // last circle arrow.setRotation(curve.getEndAngle()); arrow.drawCentered(endPos.x, endPos.y, arrowColor); - } else { + } else if (sliderClickedInitial) { // first circle arrow.setRotation(curve.getStartAngle()); arrow.drawCentered(x, y, arrowColor);