Skip to content

Commit

Permalink
fix(KeyboardView): IllegalFormatConversionException in debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
iovxw committed Oct 28, 2021
1 parent e863ad1 commit dc06354
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ public boolean onFling(
} else if ((deltaY > travel || velocityY > mSwipeThreshold) && absX < absY) {
if (mDisambiguateSwipe && endingVelocityY < velocityY / 4) {
Timber.d(
"swipeDebug.onFling sendDownKey, dY=%f, vY=%f, eVY=%f, travel=%d, mSwipeThreshold=%s",
mSwipeThreshold, deltaY, velocityY, endingVelocityY, travel);
"swipeDebug.onFling sendDownKey, dY=%f, vY=%f, eVY=%f, travel=%d, mSwipeThreshold=%d",
deltaY, velocityY, endingVelocityY, travel, mSwipeThreshold);
sendDownKey = true;
type = KeyEventType.SWIPE_DOWN.ordinal();
} else {
Expand Down

0 comments on commit dc06354

Please sign in to comment.