From 0dbbb07d6c851306eaeb03257103f2118262a832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=97=D0=B0=D1=86=D0=B5=D0=BF=D0=B8=D0=BD?= Date: Fri, 13 Oct 2017 19:18:43 +0300 Subject: [PATCH] [android] Fixed 'more reviews' button visibility --- android/src/com/mapswithme/maps/ugc/UGCController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/com/mapswithme/maps/ugc/UGCController.java b/android/src/com/mapswithme/maps/ugc/UGCController.java index e18b4c681f..74eb477983 100644 --- a/android/src/com/mapswithme/maps/ugc/UGCController.java +++ b/android/src/com/mapswithme/maps/ugc/UGCController.java @@ -200,7 +200,7 @@ public class UGCController implements View.OnClickListener, UGC.UGCListener { UiUtils.showIf(ugc != null || canUserRate(ugcUpdate) || ugcUpdate != null, mPreviewUgcInfoView); UiUtils.showIf(canUserRate(ugcUpdate), mLeaveReviewButton, mUgcAddRatingView); - UiUtils.showIf(ugc != null, mSummaryRootView); + UiUtils.showIf(ugc != null, mSummaryRootView, mUgcMoreReviews); RatingView ratingView = (RatingView) mPreviewUgcInfoView.findViewById(R.id.rating_view); mUgc = ugc; if (mUgc == null)