diff options
| author | c:geo <cgeo@cgeo.org> | 2011-08-01 22:09:20 -0700 |
|---|---|---|
| committer | c:geo <cgeo@cgeo.org> | 2011-08-01 22:09:20 -0700 |
| commit | 6118f6489847f98d2c257671c352082974134b14 (patch) | |
| tree | eeb68320e720f84224e647b02a10a2f645fe6387 /src/cgeo/geocaching/cgSettings.java | |
| parent | 53645ae292deb7f14ae3da2a19e2e9f11407746d (diff) | |
| parent | 7800d4761313a036f32e3d31747099f009c0e1da (diff) | |
| download | cgeo-6118f6489847f98d2c257671c352082974134b14.zip cgeo-6118f6489847f98d2c257671c352082974134b14.tar.gz cgeo-6118f6489847f98d2c257671c352082974134b14.tar.bz2 | |
Merge pull request #84 from rahu/master
Display images for logs
Diffstat (limited to 'src/cgeo/geocaching/cgSettings.java')
| -rw-r--r-- | src/cgeo/geocaching/cgSettings.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/cgSettings.java b/src/cgeo/geocaching/cgSettings.java index 6c7473b..9b5a2e0 100644 --- a/src/cgeo/geocaching/cgSettings.java +++ b/src/cgeo/geocaching/cgSettings.java @@ -81,6 +81,7 @@ public class cgSettings { public int excludeMine = 0; public int excludeDisabled = 0; public int storeOfflineMaps = 0; + public boolean storelogimages = false; public int asBrowser = 1; public int useCompass = 1; public int useGNavigation = 1; @@ -146,6 +147,7 @@ public class cgSettings { excludeMine = prefs.getInt("excludemine", 0); excludeDisabled = prefs.getInt("excludedisabled", 0); storeOfflineMaps = prefs.getInt("offlinemaps", 1); + storelogimages = prefs.getBoolean("logimages", false); asBrowser = prefs.getInt("asbrowser", 1); useCompass = prefs.getInt("usecompass", 1); useGNavigation = prefs.getInt("usegnav", 1); |
