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

Commit 05ed3b5a authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Correct parentheses error" into main

parents 69bc047e 32dba8a8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -538,8 +538,8 @@ public class QuickSettingsControllerImpl implements QuickSettingsController, Dum

    /** Returns whether split shade is enabled and an x coordinate is outside of the QS frame. */
    private boolean isSplitShadeAndTouchXOutsideQs(float touchX) {
        return mSplitShadeEnabled && touchX < mQsFrame.getX()
                || touchX > mQsFrame.getX() + mQsFrame.getWidth();
        return mSplitShadeEnabled
                && (touchX < mQsFrame.getX() || touchX > mQsFrame.getX() + mQsFrame.getWidth());
    }

    /**