[android] Added ignoring of compass update if we are dragging/settling the pp

This commit is contained in:
Александр Зацепин 2019-02-11 13:55:44 +03:00 committed by yoksnod
parent a504175ef3
commit 1d1adecd7c

View file

@ -354,7 +354,9 @@ public class BottomSheetPlacePageController implements PlacePageController, Loca
@Override
public void onCompassUpdated(long time, double magneticNorth, double trueNorth, double accuracy)
{
if (isHiddenState(mPlacePageBehavior.getState()))
@AnchorBottomSheetBehavior.State
int currentState = mPlacePageBehavior.getState();
if (isHiddenState(currentState) || isDraggingState(currentState) || isSettlingState(currentState))
return;
double north = trueNorth >= 0.0 ? trueNorth : magneticNorth;