Browse Source

Update free disk space label on Category change in Auto Mode

Closes #8772.
This will fix issue that "Free space on disk:" label in 
Add New Torrent dialog not updated on Category change
when Torrent Management Mode is on Auto mode.
adaptive-webui-19844
Medvedishce 5 years ago committed by GitHub
parent
commit
48fff37143
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/gui/addnewtorrentdialog.cpp

2
src/gui/addnewtorrentdialog.cpp

@ -421,6 +421,7 @@ void AddNewTorrentDialog::categoryChanged(int index) @@ -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) @@ -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();
}
}

Loading…
Cancel
Save