Ignore:
Timestamp:
2010-01-07T09:46:17+01:00 (14 years ago)
Author:
Gubaer
Message:

Improved user feedback when downloading relations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmReader.java

    r2626 r2751  
    591591        try {
    592592            progressMonitor.beginTask(tr("Prepare OSM data...", 2));
    593             progressMonitor.subTask(tr("Parsing OSM data..."));
     593            progressMonitor.indeterminateSubTask(tr("Parsing OSM data..."));
    594594            InputSource inputSource = new InputSource(new InputStreamReader(source, "UTF-8"));
    595595            SAXParserFactory.newInstance().newSAXParser().parse(inputSource, reader.new Parser());
    596596            progressMonitor.worked(1);
    597597
    598             progressMonitor.subTask(tr("Preparing data set..."));
     598            progressMonitor.indeterminateSubTask(tr("Preparing data set..."));
    599599            reader.ds.beginUpdate();
    600600            try {
Note: See TracChangeset for help on using the changeset viewer.