[UI] zoom buttons on small screens fix

Signed-off-by: hemanggs <hemangmanhas@gmail.com>
This commit is contained in:
SYCE 2025-03-15 17:35:24 +05:30
parent 09127e75c8
commit 2c6acbefac

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());
}
}
}