- BUGFIX: Wait for torrent_paused_alert before reloading a torrent for full allocation mode

This commit is contained in:
Christophe Dumez 2007-08-15 19:41:12 +00:00
parent d5fa6cefe4
commit 36e87952fa
6 changed files with 30 additions and 9 deletions

View file

@ -1229,7 +1229,6 @@ void GUI::showProperties(const QModelIndex &index){
QString fileHash = DLListModel->data(DLListModel->index(row, HASH)).toString();
torrent_handle h = BTSession->getTorrentHandle(fileHash);
properties *prop = new properties(this, BTSession, h);
connect(prop, SIGNAL(mustHaveFullAllocationMode(torrent_handle)), BTSession, SLOT(reloadTorrent(torrent_handle)));
connect(prop, SIGNAL(filteredFilesChanged(QString)), this, SLOT(updateFileSizeAndProgress(QString)));
prop->show();
}