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

Commit 128bc3eb authored by Yash Garg's avatar Yash Garg 💬 Committed by Sahil Sonar
Browse files

fix: multiply non gesture mode dock spacing by 1.5f



[SahilSonar - adapted to A14]

Signed-off-by: default avatarSahilSonar <sss.sonar2003@gmail.com>
parent 9f4245df
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1911,7 +1911,7 @@ public class DeviceProfile {
            return hotseatBarBottomSpacePx - (Math.abs(hotseatCellHeightPx - iconSizePx) / 2);
        } else {
            int size = hotseatBarSizePx - hotseatCellHeightPx;
            return isFullyGesture ? size / 4 : size;
            return isFullyGesture ? size / 4 : Math.round(size / 1.5f);
        }
    }