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

Commit 9962af32 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Make sure AmbiguousGestureMultiplier could start from 1" into rvc-dev am: 47059f76

Change-Id: I8f5c5d716a9ebc5fdcda88650544e2c1a5378439
parents 3102456a 47059f76
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -416,7 +416,7 @@ public class ViewConfiguration {
                com.android.internal.R.dimen.config_ambiguousGestureMultiplier,
                multiplierValue,
                true /*resolveRefs*/);
        mAmbiguousGestureMultiplier = multiplierValue.getFloat();
        mAmbiguousGestureMultiplier = Math.max(1.0f, multiplierValue.getFloat());

        // Size of the screen in bytes, in ARGB_8888 format
        final WindowManager windowManager = context.getSystemService(WindowManager.class);