mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Wrong size for downloaded components
This commit is contained in:
parent
15f5bf6505
commit
82a95f3e79
1 changed files with 18 additions and 1 deletions
|
@ -265,7 +265,24 @@ void CUninstallDialog::updateSizes()
|
|||
}
|
||||
|
||||
// downloaded files
|
||||
qint64 bytes = getDirectorySize(config->getInstallationDirectory(), false);
|
||||
qint64 bytes = 0;
|
||||
|
||||
QDir dir(config->getInstallationDirectory());
|
||||
|
||||
QStringList filters;
|
||||
|
||||
filters << "*.log";
|
||||
filters << "*.7z";
|
||||
filters << "*.bnp";
|
||||
filters << "*.zip";
|
||||
filters << "*.part";
|
||||
|
||||
QFileInfoList downloadedFiles = dir.entryInfoList(filters, QDir::Files);
|
||||
|
||||
foreach(const QFileInfo &info, downloadedFiles)
|
||||
{
|
||||
bytes += info.size();
|
||||
}
|
||||
|
||||
emit updateSize(m_downloadedFilesIndex, qBytesToHumanReadable(bytes));
|
||||
|
||||
|
|
Loading…
Reference in a new issue