From de0b8a3d3db2c01f7aa2c1256744ad9df2468507 Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Sun, 20 Dec 2015 17:57:46 +0100 Subject: fix indention --- applications/kube-accounts/Maildir.qml | 100 ++++++++++++++++----------------- 1 file changed, 50 insertions(+), 50 deletions(-) (limited to 'applications/kube-accounts') diff --git a/applications/kube-accounts/Maildir.qml b/applications/kube-accounts/Maildir.qml index 0c7cadb2..e3074c31 100644 --- a/applications/kube-accounts/Maildir.qml +++ b/applications/kube-accounts/Maildir.qml @@ -21,80 +21,80 @@ Item { margins: 10 } - GridLayout { - id: mainContent + GridLayout { + id: mainContent - Layout.fillWidth: true + Layout.fillWidth: true - rows: 2 - columns: 3 + rows: 2 + columns: 3 - Label { - text: "Name:" - } + Label { + text: "Name:" + } - TextField { + TextField { - Layout.fillWidth: true + Layout.fillWidth: true - placeholderText: "Enter a name to identify the resource" - text: maildir.name - } + placeholderText: "Enter a name to identify the resource" + text: maildir.name + } - Label { + Label { - } + } - Label { - text: "Location:" - } + Label { + text: "Location:" + } - TextField { + TextField { - Layout.fillWidth: true + Layout.fillWidth: true - placeholderText: "Click on the folder button to enter the location" - text: maildir.folderUrl + placeholderText: "Click on the folder button to enter the location" + text: maildir.folderUrl - enabled: false - } + enabled: false + } - Button { - iconName: "folder" + Button { + iconName: "folder" - onClicked: { - fileDialog.visible = true - } + onClicked: { + fileDialog.visible = true + } - FileDialog { - id: fileDialog - title: "Please choose the maildir folder" - folder: shortcuts.home + FileDialog { + id: fileDialog + title: "Please choose the maildir folder" + folder: shortcuts.home - selectFolder: true + selectFolder: true - onAccepted: { - maildir.folderUrl = fileDialog.fileUrl - visible: false - } - onRejected: { - visible: false + onAccepted: { + maildir.folderUrl = fileDialog.fileUrl + visible: false + } + onRejected: { + visible: false + } } } } - } - RowLayout { - id: buttons + RowLayout { + id: buttons - Layout.alignment: Qt.AlignRight + Layout.alignment: Qt.AlignRight - Button { - text: "Create Resource" - } - Button { - text: "Cancel" + Button { + text: "Create Resource" + } + Button { + text: "Cancel" + } } } - } } \ No newline at end of file -- cgit v1.2.3