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

Commit 49065c5e authored by Michael Wright's avatar Michael Wright Committed by Android Git Automerger
Browse files

am 4e58e9c5: am 53d13667: Fix log tags in trackball debugging

* commit '4e58e9c5':
  Fix log tags in trackball debugging
parents b32c58fd 4e58e9c5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3562,7 +3562,7 @@ public final class ViewRootImpl implements ViewParent,
                    + " accelMovement=" + accelMovement
                    + " accel=" + accel);
            if (accelMovement > movement) {
                if (DEBUG_TRACKBALL) Log.v("foo", "Delivering fake DPAD: "
                if (DEBUG_TRACKBALL) Log.v(TAG, "Delivering fake DPAD: "
                        + keycode);
                movement--;
                int repeatCount = accelMovement - movement;
@@ -3572,7 +3572,7 @@ public final class ViewRootImpl implements ViewParent,
                        InputDevice.SOURCE_KEYBOARD));
            }
            while (movement > 0) {
                if (DEBUG_TRACKBALL) Log.v("foo", "Delivering fake DPAD: "
                if (DEBUG_TRACKBALL) Log.v(TAG, "Delivering fake DPAD: "
                        + keycode);
                movement--;
                curTime = SystemClock.uptimeMillis();