1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-03 18:34:28 +00:00

Merge pull request #11696 from Medvedishce/Update-free-disk-space

Update free disk space label on Category change in Auto Mode
This commit is contained in:
sledgehammer999 2019-12-19 18:16:08 +02:00 committed by GitHub
commit 52273ca18c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -421,6 +421,7 @@ void AddNewTorrentDialog::categoryChanged(int index)
if (m_ui->comboTTM->currentIndex() == 1) {
QString savePath = BitTorrent::Session::instance()->categorySavePath(m_ui->categoryComboBox->currentText());
m_ui->savePath->setSelectedPath(Utils::Fs::toNativePath(savePath));
updateDiskSpaceLabel();
}
}
@ -682,6 +683,7 @@ void AddNewTorrentDialog::TMMChanged(int index)
m_ui->savePath->clear();
QString savePath = BitTorrent::Session::instance()->categorySavePath(m_ui->categoryComboBox->currentText());
m_ui->savePath->addItem(savePath);
updateDiskSpaceLabel();
}
}