Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorАлександр Зацепин <az@mapswithme.com>2017-10-13 19:18:43 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2017-10-13 21:10:41 +0300
commit0dbbb07d6c851306eaeb03257103f2118262a832 (patch)
treee8fd992ee31af719483e2adf47c88b955175ad4f
parent484cc0e42d38b3213693f95afe1b2baf2aca5d74 (diff)
[android] Fixed 'more reviews' button visibilitybeta-1065
-rw-r--r--android/src/com/mapswithme/maps/ugc/UGCController.java2
1 files changed, 1 insertions, 1 deletions
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)