Correctly update the torrent size in torrent addition dialog

This commit is contained in:
Christophe Dumez 2010-10-31 14:12:13 +00:00
parent 6b7af5b464
commit 0a2efaf5fc

View file

@ -38,6 +38,7 @@ torrentAdditionDialog::torrentAdditionDialog(GUI *parent, QBtSession* _BTSession
BTSession = _BTSession;
// Set Properties list model
PropListModel = new TorrentFilesModel();
connect(PropListModel, SIGNAL(filteredFilesChanged()), SLOT(updateDiskSpaceLabels()));
torrentContentList->setModel(PropListModel);
torrentContentList->hideColumn(PROGRESS);
PropDelegate = new PropListDelegate();
@ -280,6 +281,9 @@ void torrentAdditionDialog::showLoad(QString filePath, QString from_url) {
}
savePathTxt->setEditText(save_path);
// Update size labels
updateDiskSpaceLabels();
// Show the dialog
show();