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

Commit eb41e856 authored by Kshitij's avatar Kshitij
Browse files

fix!: Add missing return in transpose mapPresenterToModel

- This causes hotseat to fail mapping to presenter correctly
  which induces a crash on hotseat folder creation
parent e3156aa8
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;