PresentationApp/qml/fileDialogs.qml
lordwelch a8534bd967 Now in in a not completely worthless state
Need to do some basic checks like bounds checking
And make the images show back up
2018-02-07 10:00:10 -08:00

14 lines
233 B
QML

import QtQuick 2.2
import QtQuick.Dialogs 1.0
FileDialog {
id: imgDialog
title: "Please choose an image"
folder: shortcuts.home
onAccepted: {
}
onRejected: {
}
Component.onCompleted: visible = true
}