Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
2c6acbefac [UI] zoom buttons on small screens fix
Signed-off-by: hemanggs <hemangmanhas@gmail.com>
2025-03-15 17:36:42 +05:30

View file

@ -306,7 +306,15 @@ public class MapButtonsController extends Fragment
{
final View button = entry.getValue();
if (button.getParent() == parent)
showButton(getViewTopOffset(translation, button) >= 0, entry.getKey());
{
boolean show = getViewTopOffset(translation, button) >= 0;
// Allow offset tolerance for zoom buttons
if (entry.getKey() == MapButtons.zoomIn || entry.getKey() == MapButtons.zoomOut|| entry.getKey() == MapButtons.zoom)
{
show = getViewTopOffset(translation, button) >= -140;
}
showButton(show, entry.getKey());
}
}
}