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

Commit 45c7d51f authored by Kshitij's avatar Kshitij
Browse files

Merge branch '2845-a14-dockfolderfix' into 'a14'

fix!: Add missing return in transpose mapPresenterToModel

See merge request e/os/BlissLauncher3!105
parents e3156aa8 eb41e856
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ public class CellPosMapper {
        public CellPos mapPresenterToModel(int presenterX, int presenterY, int presenterScreen,
                                           int container) {
            if (container != Favorites.CONTAINER_DESKTOP) {
                super.mapPresenterToModel(presenterX, presenterY, presenterScreen, container);
                return super.mapPresenterToModel(presenterX, presenterY, presenterScreen, container);
            }
            final int numRows = mIDP.numColumnsFixed;
            final int numColumns = mIDP.numRowsFixed;