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

Commit b2eba6b9 authored by Steven Terrell's avatar Steven Terrell Committed by Automerger Merge Worker
Browse files

Merge changes from topic "cursor-bg-blink-cp" into tm-qpr-dev am: 131fb1ff

parents e23d904d 131fb1ff
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -2869,6 +2869,17 @@ public class Editor {
        }
    }

    /**
     *
     * @return whether the Blink runnable is blinking or not, if null return false.
     * @hide
     */
    @VisibleForTesting
    public boolean isBlinking() {
        if (mBlink == null) return false;
        return !mBlink.mCancelled;
    }

    private class Blink implements Runnable {
        private boolean mCancelled;