forked from organicmaps/organicmaps-tmp
[android] Fixed opening behaviour in PP
When PP is already in full screen mode we shouldn't try to return it to details state during the dragging up
This commit is contained in:
parent
e6d9bdd118
commit
d8e9876320
1 changed files with 6 additions and 1 deletions
|
@ -274,7 +274,12 @@ class BottomPlacePageAnimationController extends BasePlacePageAnimationControlle
|
|||
return;
|
||||
}
|
||||
|
||||
if (distance >= 0.0f) // drag up
|
||||
boolean isDragUp = distance >= 0.0f;
|
||||
|
||||
if (isDragUp && mPlacePage.getState() == State.FULLSCREEN)
|
||||
return;
|
||||
|
||||
if (isDragUp) // drag up
|
||||
{
|
||||
if (mPlacePage.getState() == State.PREVIEW)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue