mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 09:13:08 -07:00
- Fixed space problem for "open destination folder" action
This commit is contained in:
parent
14882fe38f
commit
82b1b29906
1 changed files with 1 additions and 1 deletions
|
@ -406,7 +406,7 @@ void GUI::openDestinationFolder() const {
|
||||||
QString savePath = h.save_path();
|
QString savePath = h.save_path();
|
||||||
if(!pathsList.contains(savePath)) {
|
if(!pathsList.contains(savePath)) {
|
||||||
pathsList.append(savePath);
|
pathsList.append(savePath);
|
||||||
QDesktopServices::openUrl(QUrl(savePath));
|
QDesktopServices::openUrl(QString("file://")+savePath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue