summaryrefslogtreecommitdiffstats
path: root/qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml')
-rw-r--r--qml/Configuration.qml17
1 files changed, 12 insertions, 5 deletions
diff --git a/qml/Configuration.qml b/qml/Configuration.qml
index 71171e7..b36f28d 100644
--- a/qml/Configuration.qml
+++ b/qml/Configuration.qml
@@ -4,6 +4,8 @@ import QtQuick.Dialogs 1.1
// Configuration summary Page
Rectangle {
+ LayoutMirroring.enabled: (direction == "LTR" ? false : true)
+ LayoutMirroring.childrenInherit: true
Version {id:version}
property var title: qsTr("Your configuration")
width: view.width; height: view.height
@@ -20,12 +22,17 @@ Rectangle {
id: confList
width: view.width
height: view.height -150
+ spacing: 3
model: ConfList
- delegate: Label {
- text: name
- leftPadding: 50
- textFormat: Text.RichText
- color: "white"
+ delegate: Row {
+ width: view.width
+ Label {
+ text: name
+ leftPadding: 50
+ rightPadding: 50
+ textFormat: Text.RichText
+ color: "white"
+ }
}
}
MButton {