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

Commit 58d0d259 authored by Wu Ahan's avatar Wu Ahan
Browse files

Fix cancel condition of ImeJankTracker

Bug: 311346442
Test: manually
Change-Id: I8189740be362fe6bfa52d082f832c5c0de46b8ee
parent a8bb7bf3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -726,7 +726,7 @@ public interface ImeTracker {
         */
        public void onCancelAnimation(@AnimationType int animType) {
            final int cujType = getImeInsetsCujFromAnimation(animType);
            if (cujType == -1) {
            if (cujType != -1) {
                InteractionJankMonitor.getInstance().cancel(cujType);
            }
        }