Compare commits
No commits in common. "10da8737019eb4b3942ee3fd6dc704bb9f9d4495" and "4d78262277813b91fd6b63c4e8926ec69b55215e" have entirely different histories.
10da873701
...
4d78262277
|
@ -1,5 +1,5 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import Qt.labs.platform
|
import QtCore
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import QtQuick.Window
|
import QtQuick.Window
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
|
@ -117,7 +117,7 @@ FluScrollablePage{
|
||||||
id: file_dialog
|
id: file_dialog
|
||||||
currentFolder: StandardPaths.standardLocations(StandardPaths.DownloadLocation)[0]
|
currentFolder: StandardPaths.standardLocations(StandardPaths.DownloadLocation)[0]
|
||||||
onAccepted: {
|
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)
|
http_download.download(path)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue