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

Commit a64362ee authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Create a new instance of rotation touch helper per device state" into...

Merge "Create a new instance of rotation touch helper per device state" into ub-launcher3-rvc-qpr-dev
parents f55ccf43 5b7bf914
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ public class RecentsAnimationDeviceState implements
        mDefaultDisplay = DefaultDisplay.INSTANCE.get(context);
        mDisplayId = mDefaultDisplay.getInfo().id;
        runOnDestroy(() -> mDefaultDisplay.removeChangeListener(this));
        mRotationTouchHelper = RotationTouchHelper.INSTANCE.get(context);
        mRotationTouchHelper = new RotationTouchHelper(context);
        runOnDestroy(mRotationTouchHelper::destroy);

        // Register for user unlocked if necessary
+1 −3
Original line number Diff line number Diff line
@@ -41,8 +41,6 @@ import java.util.ArrayList;
public class RotationTouchHelper implements
        SysUINavigationMode.NavigationModeChangeListener,
        DefaultDisplay.DisplayInfoChangeListener {
    public static final MainThreadInitializedObject<RotationTouchHelper> INSTANCE =
            new MainThreadInitializedObject<>(RotationTouchHelper::new);

    private final OrientationTouchTransformer mOrientationTouchTransformer;
    private final DefaultDisplay mDefaultDisplay;
@@ -122,7 +120,7 @@ public class RotationTouchHelper implements

    private final Context mContext;

    private RotationTouchHelper(Context context) {
    public RotationTouchHelper(Context context) {
        mContext = context;
        Resources resources = mContext.getResources();
        mSysUiNavMode = SysUINavigationMode.INSTANCE.get(context);