diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2013-05-24 10:43:49 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2013-05-24 10:43:49 +0200 |
| commit | 0995aa5abb3ee8ab8eaf912adfcdec5243e53a64 (patch) | |
| tree | b105a5ae7693171c58c7747873f0caf0c5651845 /main/src/cgeo | |
| parent | 04f1bf0386776de8ca6e3eb95c2d6bfde5401ed2 (diff) | |
| parent | d7d425b1d146b6b828cc5c155873ca7f32e365a0 (diff) | |
| download | cgeo-0995aa5abb3ee8ab8eaf912adfcdec5243e53a64.zip cgeo-0995aa5abb3ee8ab8eaf912adfcdec5243e53a64.tar.gz cgeo-0995aa5abb3ee8ab8eaf912adfcdec5243e53a64.tar.bz2 | |
Merge branch 'release' into upstream
Diffstat (limited to 'main/src/cgeo')
| -rw-r--r-- | main/src/cgeo/geocaching/CacheDetailActivity.java | 2 | ||||
| -rw-r--r-- | main/src/cgeo/geocaching/export/GpxExport.java | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/CacheDetailActivity.java b/main/src/cgeo/geocaching/CacheDetailActivity.java index 11c4b4f..44934c0 100644 --- a/main/src/cgeo/geocaching/CacheDetailActivity.java +++ b/main/src/cgeo/geocaching/CacheDetailActivity.java @@ -664,6 +664,8 @@ public class CacheDetailActivity extends AbstractViewPagerActivity<CacheDetailAc } ((TextView) findViewById(R.id.actionbar_title)).setCompoundDrawablesWithIntrinsicBounds(getResources().getDrawable(cache.getType().markerId), null, null, null); + // reset imagesList so Images view page will be redrawn + imagesList = null; reinitializeViewPager(); // rendering done! remove progress popup if any there diff --git a/main/src/cgeo/geocaching/export/GpxExport.java b/main/src/cgeo/geocaching/export/GpxExport.java index c17448f..66345da 100644 --- a/main/src/cgeo/geocaching/export/GpxExport.java +++ b/main/src/cgeo/geocaching/export/GpxExport.java @@ -326,7 +326,8 @@ class GpxExport extends AbstractExport { "type", log.type.type); gpx.startTag(PREFIX_GROUNDSPEAK, "finder"); - gpx.attribute("", "id", log.author); + gpx.attribute("", "id", ""); + gpx.text(log.author); gpx.endTag(PREFIX_GROUNDSPEAK, "finder"); gpx.startTag(PREFIX_GROUNDSPEAK, "text"); |
