From b6ed572616383b57bc2956f6b41e2853724c23f3 Mon Sep 17 00:00:00 2001 From: rsudev Date: Sun, 1 Mar 2015 10:28:07 +0100 Subject: Remove doubled totalcount in map title Small coorection to: fix #4694: use second line in map title (commit 9c0b48c8282c5dee1be9fb42fe0bb8b01b3a7a20) --- main/src/cgeo/geocaching/maps/CGeoMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/src/cgeo') diff --git a/main/src/cgeo/geocaching/maps/CGeoMap.java b/main/src/cgeo/geocaching/maps/CGeoMap.java index e0e0c48..7cd13a7 100644 --- a/main/src/cgeo/geocaching/maps/CGeoMap.java +++ b/main/src/cgeo/geocaching/maps/CGeoMap.java @@ -232,7 +232,7 @@ public class CGeoMap extends AbstractMap implements ViewFactory { final int totalCount = map.caches.size(); if (map.cachesCnt != totalCount && Settings.isDebug()) { - subtitle.append(map.cachesCnt).append('/').append(totalCount).append(map.res.getQuantityString(R.plurals.cache_counts, totalCount, totalCount)); + subtitle.append(map.cachesCnt).append('/').append(map.res.getQuantityString(R.plurals.cache_counts, totalCount, totalCount)); } else { subtitle.append(map.res.getQuantityString(R.plurals.cache_counts, map.cachesCnt, map.cachesCnt)); -- cgit v1.1