Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ae0cdcb4 authored by Isaac Katzenelson's avatar Isaac Katzenelson
Browse files

Start blinking thread with post instead of postDelayed

Bug: 7275365

When pressing the stop button on the timer of stopwatch, start the blinking of the
time without a delay.

Change-Id: I2cbd6ebd65fc9dd6699fbc53c867627ca95dab01
parent 69ba4ed9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -430,7 +430,7 @@ public class CountingTimerView extends View {
    public void blinkTimeStr(boolean blink) {
        if (blink) {
            removeCallbacks(mBlinkThread);
            postDelayed(mBlinkThread, 1000);
            post(mBlinkThread);
        } else {
            removeCallbacks(mBlinkThread);
            showTime(true);