Compare commits

..

No commits in common. "10da8737019eb4b3942ee3fd6dc704bb9f9d4495" and "4d78262277813b91fd6b63c4e8926ec69b55215e" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import QtQuick
import Qt.labs.platform
import QtCore
import QtQuick.Layouts
import QtQuick.Window
import QtQuick.Controls
@ -117,7 +117,7 @@ FluScrollablePage{
id: file_dialog
currentFolder: StandardPaths.standardLocations(StandardPaths.DownloadLocation)[0]
onAccepted: {
var path = currentFolder.toString().replace(FluTools.isMacos() ? "file://" : "file:///","") + "/big_buck_bunny.mp4"
var path = selectedFolder.toString().replace("file:///","") + "/big_buck_bunny.mp4"
http_download.download(path)
}
}