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

Commit e54123cf authored by David van Tonder's avatar David van Tonder Committed by Gerrit Code Review
Browse files

Merge "Pie Controls: Fix snap points position." into cm-10.1

parents e29d7f0d 25f7f2ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -316,7 +316,7 @@ public class PieView extends View implements View.OnTouchListener {
        mActiveSnap = null;
        // reuse already created snap points
        for (PiePosition g : PiePosition.values()) {
            if ((mSnapPointMask & g.FLAG) == 0) {
            if ((mSnapPointMask & g.FLAG) != 0) {
                int x = width / 2;
                int y = height / 2;
                if (g == PiePosition.LEFT || g == PiePosition.RIGHT) {