1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 20:27:45 +00:00
astra/launcher/ui/Components/FormFileDelegate.qml

24 lines
500 B
QML
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2023-09-16 17:32:38 -04:00
import QtCore
import QtQuick.Dialogs
2023-09-16 18:15:11 -04:00
import org.kde.kirigamiaddons.labs.mobileform as MobileForm
MobileForm.FormButtonDelegate {
id: control
property string file
icon.name: "document-open"
description: file
onClicked: dialog.open()
FileDialog {
id: dialog
2023-09-16 17:32:38 -04:00
currentFolder: StandardPaths.standardLocations(StandardPaths.HomeLocation)[0]
}
}