2019-05-06 03:15:55 -07:00
|
|
|
import QtQuick 2.4
|
|
|
|
import QtQuick.Dialogs 1.3
|
2018-02-06 20:50:49 -08:00
|
|
|
|
|
|
|
FileDialog {
|
|
|
|
id: imgDialog
|
|
|
|
title: "Please choose an image"
|
|
|
|
folder: shortcuts.home
|
|
|
|
onAccepted: {
|
2019-05-06 03:15:55 -07:00
|
|
|
|
2018-02-06 20:50:49 -08:00
|
|
|
}
|
|
|
|
onRejected: {
|
2019-05-06 03:15:55 -07:00
|
|
|
|
2018-02-06 20:50:49 -08:00
|
|
|
}
|
|
|
|
Component.onCompleted: visible = true
|
|
|
|
}
|