diff --git a/src/gui/properties/propertieswidget.cpp b/src/gui/properties/propertieswidget.cpp index aed3b6b12..dbcde3f3d 100644 --- a/src/gui/properties/propertieswidget.cpp +++ b/src/gui/properties/propertieswidget.cpp @@ -252,7 +252,7 @@ BitTorrent::TorrentHandle *PropertiesWidget::getCurrentTorrent() const void PropertiesWidget::updateSavePath(BitTorrent::TorrentHandle *const torrent) { if (m_torrent == torrent) { - save_path->setText(m_torrent->savePathParsed()); + save_path->setText(m_torrent->rootPath()); } } diff --git a/src/gui/torrentmodel.cpp b/src/gui/torrentmodel.cpp index 58fcab22f..027d43bd8 100644 --- a/src/gui/torrentmodel.cpp +++ b/src/gui/torrentmodel.cpp @@ -221,7 +221,7 @@ QVariant TorrentModel::data(const QModelIndex &index, int role) const case TR_TIME_ELAPSED: return (role == Qt::DisplayRole) ? torrent->activeTime() : torrent->seedingTime(); case TR_SAVE_PATH: - return torrent->savePathParsed(); + return torrent->rootPath(); case TR_COMPLETED: return torrent->completedSize(); case TR_RATIO_LIMIT: