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

Commit a96f2dba authored by Joshua Tsuji's avatar Joshua Tsuji
Browse files

Fix default stiffness to not be 100x the reasonable default.

Test: Clear settings, observe bubbles that spring instead of not springing because they're 100x too stiff.
Change-Id: I88045ff92e3323f7e9474958af063d5fafa4a21b
parent d5bd5f47
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -341,7 +341,7 @@ public class StackAnimationController extends
                .setDampingRatio(BubbleController.getBubbleBounciness(
                        mLayout.getContext(), DEFAULT_BOUNCINESS))
                .setStiffness(BubbleController.getBubbleStiffness(
                        mLayout.getContext(), (int) (DEFAULT_STIFFNESS * 100f)));
                        mLayout.getContext(), (int) DEFAULT_STIFFNESS));
    }

    @Override