commit | 3bb79f99ae5638c0356ac5a3e902e6fea734e00a | [log] [tgz] |
---|---|---|
author | Zak Cohen <zakcohen@google.com> | Wed Mar 31 22:42:38 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Mar 31 22:42:38 2021 +0000 |
tree | 1f51f1bf06fdb337a7aa0964bff22f59e9dace51 | |
parent | 2ec85b4bcf06efd22fe4a21dbed45c1a359bc980 [diff] | |
parent | 31e18d6fe74ce9256ffc6ff78d9e942883eaffa8 [diff] |
Merge "TAPL Increase size of Background to Overview swipe gesture" into sc-dev am: 31e18d6fe7 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/14056548 Change-Id: I0caf995dc449c21082995fa4f9c4afd1b976ba04
diff --git a/tests/tapl/com/android/launcher3/tapl/Background.java b/tests/tapl/com/android/launcher3/tapl/Background.java index d317783..4a666b1 100644 --- a/tests/tapl/com/android/launcher3/tapl/Background.java +++ b/tests/tapl/com/android/launcher3/tapl/Background.java
@@ -122,7 +122,9 @@ endY = startY - swipeLength; } else { startX = getSwipeStartX(); - endX = startX - swipeLength; + // TODO(b/184059820) make horizontal swipe use swipe width not height, for the + // moment just double the swipe length. + endX = startX - swipeLength * 2; startY = endY = mLauncher.getDevice().getDisplayHeight() / 2; }