diff --git a/OpenWatchWinder.ino b/OpenWatchWinder.ino
index 655799db32a5d984e802c62bec6a482836702426..2e625b7314dee1dd970d507334014ea564651e11 100644
--- a/OpenWatchWinder.ino
+++ b/OpenWatchWinder.ino
@@ -245,9 +245,11 @@ void handleSwEvent(AceButton *button, uint8_t eventType, uint8_t buttonState)
       Serial.println(">> LongPress: Stop Winding");
       Stop = true;
       Continue = false;
-      if (WState != W_PAUSE)
+      pwr_led.Reset();
+      if (WState == W_PAUSE)
       {
-        pwr_led.Reset();
+        pwr_led.On();
+      }else{
         pwr_led.Blink(100, 500).Forever();
       }
       break;