Merge pull request #3625 from Chocobo1/native_path

Use native path separators
This commit is contained in:
sledgehammer999 2015-08-30 07:07:58 -05:00
commit a0da4a844c
4 changed files with 5 additions and 4 deletions

View file

@ -251,7 +251,7 @@ BitTorrent::TorrentHandle *PropertiesWidget::getCurrentTorrent() const
void PropertiesWidget::updateSavePath(BitTorrent::TorrentHandle *const torrent)
{
if (m_torrent == torrent) {
save_path->setText(m_torrent->rootPath());
save_path->setText(Utils::Fs::toNativePath(m_torrent->rootPath()));
}
}