Use HInterfaceBox for ImportExportKeys

This commit is contained in:
miruka
2019-08-28 11:54:25 -04:00
parent ce3404a516
commit 7c3ed5ca14
4 changed files with 31 additions and 32 deletions

View File

@@ -3,7 +3,9 @@ import Qt.labs.platform 1.1
Item {
id: opener
anchors.fill: parent
anchors.fill: fill ? parent : undefined
property bool fill: true
property alias dialog: fileDialog
property string selectedFile: ""
@@ -12,7 +14,7 @@ Item {
enum FileType { All, Images }
property int fileType: HFileDialogOpener.FileType.All
TapHandler { onTapped: fileDialog.open() }
TapHandler { enabled: fill; onTapped: fileDialog.open() }
FileDialog {
id: fileDialog

View File

@@ -24,7 +24,7 @@ Rectangle {
property var buttonCallbacks: []
property string enterButtonTarget: ""
default property alias body: interfaceBody.children
default property alias body: interfaceBody.data
function clickEnterButtonTarget() {
for (let i = 0; i < buttonModel.length; i++) {