Changeset 14872 in josm


Ignore:
Timestamp:
2019-03-10T17:08:15+01:00 (5 years ago)
Author:
GerdP
Message:

see #17443: increase threshold value reg. display of progress bar to reflect new calculation speed
With normal sized gpx tracks the calculation is done in a few miliseconds

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/gpx/DownloadAlongTrackAction.java

    r14868 r14872  
    101101        final int totalTicks = latcnt;
    102102        // guess if a progress bar might be useful.
    103         final boolean displayProgress = totalTicks > 2000 && bufferY < 0.01;
     103        final boolean displayProgress = totalTicks > 200000 && bufferY < 0.01;
    104104
    105105        class CalculateDownloadArea extends PleaseWaitRunnable {
Note: See TracChangeset for help on using the changeset viewer.