forked from organicmaps/organicmaps
[android] Added ignoring of compass update if we are dragging/settling the pp
This commit is contained in:
parent
a504175ef3
commit
1d1adecd7c
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue