Browse Source

Make sure torrent save path is displayed

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
3a237c93be
  1. 10
      src/propertieswidget.cpp

10
src/propertieswidget.cpp

@ -208,7 +208,10 @@ Bittorrent* PropertiesWidget::getBTSession() const { @@ -208,7 +208,10 @@ Bittorrent* PropertiesWidget::getBTSession() const {
void PropertiesWidget::updateSavePath(QTorrentHandle& _h) {
if(h.is_valid() && h == _h) {
save_path->setText(TorrentPersistentData::getSavePath(h.hash()));
QString p = TorrentPersistentData::getSavePath(h.hash());
if(p.isEmpty())
p = h.save_path();
save_path->setText(p);
}
}
@ -223,7 +226,10 @@ void PropertiesWidget::loadTorrentInfos(QTorrentHandle &_h) { @@ -223,7 +226,10 @@ void PropertiesWidget::loadTorrentInfos(QTorrentHandle &_h) {
try {
// Save path
save_path->setText(TorrentPersistentData::getSavePath(h.hash()));
QString p = TorrentPersistentData::getSavePath(h.hash());
if(p.isEmpty())
p = h.save_path();
save_path->setText(p);
// Creation date
lbl_creationDate->setText(h.creation_date());
// Hash

Loading…
Cancel
Save