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

Commit 32b8b8e9 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Merge branch '2886-u-nohinthotseat' into 'a14'

fix: Nudge down hotseat correctly when no-hint gesture in use

See merge request e/os/BlissLauncher3!95
parents d2100267 626308b7
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1985,7 +1985,8 @@ public class DeviceProfile {
            }

        } else {
            return hotseatBarBottomSpacePx + ((isGestural() ? 1 : 2) * heightDifference);
            return hotseatBarBottomSpacePx +
                    (int) ((isGestural() ? (isNoHintGesture ? -2.5f : 1f) : 2f) * heightDifference);
        }
    }