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

Commit 53d13667 authored by Michael Wright's avatar Michael Wright Committed by Android (Google) Code Review
Browse files

Fix log tags in trackball debugging

Change-Id: I02a623c96aff8b6ffbe11161feea39ad26ba0e83
parent 320a31c6
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();