Fix zoom buttons overlap to context menu when cutout exist
This commit is contained in:
parent
ce26755ee7
commit
9f60edce0d
1 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ import static net.osmand.plus.mapcontextmenu.MenuBuilder.SHADOW_HEIGHT_TOP_DP;
|
|||
public class MapContextMenuFragment extends BaseOsmAndFragment implements DownloadEvents {
|
||||
public static final String TAG = "MapContextMenuFragment";
|
||||
|
||||
public static final float ZOOM_PADDING_TOP_DP = 4f;
|
||||
public static final float ZOOM_PADDING_TOP_DP = 10f;
|
||||
public static final float MARKER_PADDING_DP = 20f;
|
||||
public static final float MARKER_PADDING_X_DP = 50f;
|
||||
public static final int ZOOM_IN_STANDARD = 17;
|
||||
|
@ -2101,7 +2101,7 @@ public class MapContextMenuFragment extends BaseOsmAndFragment implements Downlo
|
|||
}
|
||||
|
||||
private int getZoomButtonsY(int y) {
|
||||
return y - zoomButtonsHeight - shadowHeight - zoomPaddingTop;
|
||||
return y - zoomButtonsHeight - topScreenPosY - zoomPaddingTop;
|
||||
}
|
||||
|
||||
private void doLayoutMenu() {
|
||||
|
|
Loading…
Reference in a new issue