diff --git a/android/src/com/mapswithme/maps/widget/placepage/BottomPlacePageAnimationController.java b/android/src/com/mapswithme/maps/widget/placepage/BottomPlacePageAnimationController.java index 78667df5c8..c36ea8ddfc 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/BottomPlacePageAnimationController.java +++ b/android/src/com/mapswithme/maps/widget/placepage/BottomPlacePageAnimationController.java @@ -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) {