aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/CachePopup.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/CachePopup.java')
-rw-r--r--main/src/cgeo/geocaching/CachePopup.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/CachePopup.java b/main/src/cgeo/geocaching/CachePopup.java
index e01e4a0..9b0d96d 100644
--- a/main/src/cgeo/geocaching/CachePopup.java
+++ b/main/src/cgeo/geocaching/CachePopup.java
@@ -79,7 +79,7 @@ public class CachePopup extends AbstractPopupActivity {
if (StringUtils.isNotBlank(cache.getName())) {
setTitle(cache.getName());
} else {
- setTitle(geocode.toUpperCase());
+ setTitle(geocode);
}
// actionbar icon
@@ -89,8 +89,6 @@ public class CachePopup extends AbstractPopupActivity {
addCacheDetails();
- findViewById(R.id.offline_box).setVisibility(View.VISIBLE);
-
// offline use
final TextView offlineText = (TextView) findViewById(R.id.offline_text);
final Button offlineRefresh = (Button) findViewById(R.id.offline_refresh);