forked from organicmaps/organicmaps
[UI] zoom buttons on small screens fix
Signed-off-by: hemanggs <hemangmanhas@gmail.com>
This commit is contained in:
parent
09127e75c8
commit
2c6acbefac
1 changed files with 9 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue