mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 21:14:33 +00:00
Merge pull request #3315 from Chocobo1/disk_space
Update disk space label after changing partition, closes #3309.
This commit is contained in:
commit
6959084f98
@ -329,7 +329,7 @@ void AddNewTorrentDialog::updateDiskSpaceLabel()
|
|||||||
|
|
||||||
QString size_string = torrent_size ? Utils::Misc::friendlyUnit(torrent_size) : QString(tr("Not Available", "This size is unavailable."));
|
QString size_string = torrent_size ? Utils::Misc::friendlyUnit(torrent_size) : QString(tr("Not Available", "This size is unavailable."));
|
||||||
size_string += " (";
|
size_string += " (";
|
||||||
size_string += tr("Disk space: %1").arg(Utils::Misc::friendlyUnit(Utils::Fs::freeDiskSpaceOnPath(
|
size_string += tr("Free disk space: %1").arg(Utils::Misc::friendlyUnit(Utils::Fs::freeDiskSpaceOnPath(
|
||||||
ui->save_path_combo->itemData(
|
ui->save_path_combo->itemData(
|
||||||
ui->save_path_combo->currentIndex()).toString())));
|
ui->save_path_combo->currentIndex()).toString())));
|
||||||
size_string += ")";
|
size_string += ")";
|
||||||
@ -345,6 +345,8 @@ void AddNewTorrentDialog::onSavePathChanged(int index)
|
|||||||
|
|
||||||
// Remember index
|
// Remember index
|
||||||
m_oldIndex = index;
|
m_oldIndex = index;
|
||||||
|
|
||||||
|
updateDiskSpaceLabel();
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddNewTorrentDialog::browseButton_clicked()
|
void AddNewTorrentDialog::browseButton_clicked()
|
||||||
@ -394,8 +396,6 @@ void AddNewTorrentDialog::browseButton_clicked()
|
|||||||
ui->save_path_combo->setCurrentIndex(m_oldIndex);
|
ui->save_path_combo->setCurrentIndex(m_oldIndex);
|
||||||
}
|
}
|
||||||
connect(ui->save_path_combo, SIGNAL(currentIndexChanged(int)), SLOT(onSavePathChanged(int)));
|
connect(ui->save_path_combo, SIGNAL(currentIndexChanged(int)), SLOT(onSavePathChanged(int)));
|
||||||
|
|
||||||
updateDiskSpaceLabel();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AddNewTorrentDialog::relayout()
|
void AddNewTorrentDialog::relayout()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user