diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2012-10-06 14:07:37 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2012-10-06 14:07:37 +0200 |
| commit | a3317a2922de92fc691265c30401a4b3848a038e (patch) | |
| tree | b14e411588dfbb7ca7978a1a16778eac9527427c /main/src/cgeo/geocaching/files/GPXImporter.java | |
| parent | 3dcad1e391deeeb6093b1ac34d8b252969664dfa (diff) | |
| download | cgeo-a3317a2922de92fc691265c30401a4b3848a038e.zip cgeo-a3317a2922de92fc691265c30401a4b3848a038e.tar.gz cgeo-a3317a2922de92fc691265c30401a4b3848a038e.tar.bz2 | |
fix #1312: Strange progress indicator on GPX-import
Diffstat (limited to 'main/src/cgeo/geocaching/files/GPXImporter.java')
| -rw-r--r-- | main/src/cgeo/geocaching/files/GPXImporter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/files/GPXImporter.java b/main/src/cgeo/geocaching/files/GPXImporter.java index 279f03f..1bb3c3f 100644 --- a/main/src/cgeo/geocaching/files/GPXImporter.java +++ b/main/src/cgeo/geocaching/files/GPXImporter.java @@ -58,7 +58,7 @@ public class GPXImporter { private static final List<String> GPX_MIME_TYPES = Arrays.asList("text/xml", "application/xml");
private static final List<String> ZIP_MIME_TYPES = Arrays.asList("application/zip", "application/x-compressed", "application/x-zip-compressed", "application/x-zip", "application/octet-stream");
- private Progress progress = new Progress();
+ private Progress progress = new Progress(true);
private Resources res;
private int listId;
|
