Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix progress dialog for imports of very large CSV files
QProgressDialog only takes an int as the maximum value and the current value. So using the number of bytes parsed so far isn't going to work for very large files when an int will overflow. This commit changes this by precalculating a progress indicator and handing that over to the QProgressDialog object. See issue #1212.
- Loading branch information