Merge pull request #5672 from goblinr/MAPSME-183-ext-rich-pp-open-fix

[android] Fixed a bug associated with an incomprehensible onScrollCha…
This commit is contained in:
Aleksandr Zatsepin 2017-03-23 12:55:52 +03:00 committed by GitHub
commit 08ffb4a0ad

View file

@ -136,7 +136,10 @@ class BottomPlacePageAnimationController extends BasePlacePageAnimationControlle
if (mCurrentScrollY > 0 && mDetailsScroll.getTranslationY() > 0)
{
mPlacePage.setState(State.HIDDEN);
if (mState != State.PREVIEW)
mPlacePage.setState(State.HIDDEN);
else
mDetailsScroll.scrollTo(0, 0);
}
refreshToolbarVisibility();
}