Loading src/com/android/launcher3/DeviceProfile.java +3 −4 Original line number Diff line number Diff line Loading @@ -2169,14 +2169,13 @@ public class DeviceProfile { if (isTaskbarPresent) { // QSB on top or inline if (isGestural()) { if (isLandscape) { return 0; return -1; } else { return heightDifference / 2; return heightDifference / 5; } } else { return hotseatBarBottomSpacePx - (heightDifference / 2); return hotseatBarBottomSpacePx - heightDifference; } } else { if (isNoHintGesture) { return Math.abs(hotseatBarSizePx - iconSizePx) / 2; Loading Loading
src/com/android/launcher3/DeviceProfile.java +3 −4 Original line number Diff line number Diff line Loading @@ -2169,14 +2169,13 @@ public class DeviceProfile { if (isTaskbarPresent) { // QSB on top or inline if (isGestural()) { if (isLandscape) { return 0; return -1; } else { return heightDifference / 2; return heightDifference / 5; } } else { return hotseatBarBottomSpacePx - (heightDifference / 2); return hotseatBarBottomSpacePx - heightDifference; } } else { if (isNoHintGesture) { return Math.abs(hotseatBarSizePx - iconSizePx) / 2; Loading