From a03f96caef8b9b26876e1e9e9f797fac4bd1ecd1 Mon Sep 17 00:00:00 2001 From: Jon Miranda Date: Tue, 14 May 2019 14:21:01 -0700 Subject: [PATCH] Tone down foreground springs until they are properly tuned. Change-Id: I8c66bc9b4828da82d5dcf74d1479795c4d75ed7c --- src/com/android/launcher3/views/FloatingIconView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/android/launcher3/views/FloatingIconView.java b/src/com/android/launcher3/views/FloatingIconView.java index 17bee6763a..1a432a7ed0 100644 --- a/src/com/android/launcher3/views/FloatingIconView.java +++ b/src/com/android/launcher3/views/FloatingIconView.java @@ -81,8 +81,8 @@ public class FloatingIconView extends View implements // We spring the foreground drawable relative to the icon's movement in the DragLayer. // We then use these two factor values to scale the movement of the fg within this view. - private static final int FG_TRANS_X_FACTOR = 200; - private static final int FG_TRANS_Y_FACTOR = 300; + private static final int FG_TRANS_X_FACTOR = 80; + private static final int FG_TRANS_Y_FACTOR = 100; private static final FloatPropertyCompat mFgTransYProperty = new FloatPropertyCompat("FloatingViewFgTransY") {