Merge "Fix QSB alignment" into tm-qpr-dev

This commit is contained in:
Thales Lima
2022-06-16 12:19:45 +00:00
committed by Android (Google) Code Review
+1 -1
View File
@@ -1148,7 +1148,7 @@ public class DeviceProfile {
private int getHotseatBottomPadding() {
if (isQsbInline) {
return getQsbOffsetY() - (Math.abs(hotseatQsbHeight - hotseatCellHeightPx) / 2);
return getQsbOffsetY() + ((hotseatQsbHeight - hotseatCellHeightPx) / 2);
} else {
return (getQsbOffsetY() - taskbarSize) / 2;
}