summaryrefslogtreecommitdiffstats
path: root/go
diff options
context:
space:
mode:
authorAndy Wickham <awickham@google.com>2019-08-28 14:46:34 -0700
committerAndy Wickham <awickham@google.com>2019-09-03 22:05:20 +0000
commit90c16ace8a305229f42568d6f568a50b326a841b (patch)
tree5a8c982791e43e09e743bea5b7c8526a904cef18 /go
parentc40872b913ac657561d4fbfa0289c1f550756588 (diff)
downloadandroid_packages_apps_Trebuchet-90c16ace8a305229f42568d6f568a50b326a841b.tar.gz
android_packages_apps_Trebuchet-90c16ace8a305229f42568d6f568a50b326a841b.tar.bz2
android_packages_apps_Trebuchet-90c16ace8a305229f42568d6f568a50b326a841b.zip
Reduces padding of the Overview shelf in no button mode.
Before: https://screenshot.googleplex.com/iw6baTCfoy2.png After: https://screenshot.googleplex.com/8CcsQvLhYDo.png Desired: https://b.corp.google.com/action/issues/139551306/attachments/26925873?download=false Test: Examined before and after padding and verified 3-button is unaffected. Fixes: 139551306 Change-Id: Ia416399cf25e7c6c2fb8aa84ad20e7ad74dcd31b (cherry picked from commit ddc9622e92fb5a4b211a5942ec679d195dc10d19)
Diffstat (limited to 'go')
-rw-r--r--go/quickstep/src/com/android/launcher3/uioverrides/states/OverviewState.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/go/quickstep/src/com/android/launcher3/uioverrides/states/OverviewState.java b/go/quickstep/src/com/android/launcher3/uioverrides/states/OverviewState.java
index d0cfcf97a..212ce9bef 100644
--- a/go/quickstep/src/com/android/launcher3/uioverrides/states/OverviewState.java
+++ b/go/quickstep/src/com/android/launcher3/uioverrides/states/OverviewState.java
@@ -32,6 +32,7 @@ import static com.android.launcher3.anim.Interpolators.OVERSHOOT_1_2;
import static com.android.launcher3.anim.Interpolators.OVERSHOOT_1_7;
import static com.android.launcher3.states.RotationHelper.REQUEST_ROTATE;
+import android.content.Context;
import android.view.View;
import com.android.launcher3.DeviceProfile;
@@ -115,10 +116,10 @@ public class OverviewState extends LauncherState {
}
public static float getDefaultSwipeHeight(Launcher launcher) {
- return getDefaultSwipeHeight(launcher.getDeviceProfile());
+ return getDefaultSwipeHeight(launcher, launcher.getDeviceProfile());
}
- public static float getDefaultSwipeHeight(DeviceProfile dp) {
+ public static float getDefaultSwipeHeight(Context context, DeviceProfile dp) {
return dp.allAppsCellHeightPx - dp.allAppsIconTextSizePx;
}