diff options
author | mucek4 <tomaz@gorenc.org> | 2012-04-02 07:54:10 +0200 |
---|---|---|
committer | mucek4 <tomaz@gorenc.org> | 2012-04-02 07:54:10 +0200 |
commit | 7d9ae47b913b5cba859ec19c41520759820e5944 (patch) | |
tree | 5a2e77b0da20c7684bd5a5c82ec60e33e9e0e6fc /main/src/cgeo/geocaching/LiveMapInfo.java | |
parent | fc4b8d28821de2569020f798e477387c8c3250f4 (diff) | |
download | cgeo-7d9ae47b913b5cba859ec19c41520759820e5944.zip cgeo-7d9ae47b913b5cba859ec19c41520759820e5944.tar.gz cgeo-7d9ae47b913b5cba859ec19c41520759820e5944.tar.bz2 |
Info can be hidden after it's shown for 3 times!
Diffstat (limited to 'main/src/cgeo/geocaching/LiveMapInfo.java')
-rw-r--r-- | main/src/cgeo/geocaching/LiveMapInfo.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/LiveMapInfo.java b/main/src/cgeo/geocaching/LiveMapInfo.java index 10d14e0..3d6d110 100644 --- a/main/src/cgeo/geocaching/LiveMapInfo.java +++ b/main/src/cgeo/geocaching/LiveMapInfo.java @@ -20,7 +20,7 @@ public class LiveMapInfo extends AbstractActivity { showCount = Settings.getLiveMapHintShowCount(); - if (showCount > 0) { + if (showCount > 2) { final CheckBox cb = (CheckBox) findViewById(R.id.live_map_hint_hide); cb.setVisibility(View.VISIBLE); } |