diff --git a/android/src/com/mapswithme/maps/NavigationButtonsAnimationController.java b/android/src/com/mapswithme/maps/NavigationButtonsAnimationController.java index 94b6e5aff2..e30b90f48b 100644 --- a/android/src/com/mapswithme/maps/NavigationButtonsAnimationController.java +++ b/android/src/com/mapswithme/maps/NavigationButtonsAnimationController.java @@ -130,7 +130,9 @@ class NavigationButtonsAnimationController else if (mZoomIn.getVisibility() == View.INVISIBLE && isViewInsideLimits(mZoomIn)) { - UiUtils.show(mZoomIn, mZoomOut, mCrownView); + UiUtils.show(mZoomIn, mZoomOut); + if (mCrownView != null) + UiUtils.show(mCrownView); if (mTranslationListener != null) mTranslationListener.onFadeInZoomButtons(); }