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

Commit 5b840e29 authored by Kshitij's avatar Kshitij Committed by Mohammed Althaf T
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

Signed-off-by: default avatarSaalim Quadri <danascape@gmail.com>
parent 8bd8b861
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;