summaryrefslogtreecommitdiffstats
path: root/qml
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2020-12-22 15:30:40 +0100
committerPapoteur <papoteur@mageia.org>2020-12-22 15:36:28 +0100
commit29563967c81cc9ba657bda4c20b39887df7520b5 (patch)
tree61cf9b4aa22ba1eccbb5025d11063508bc2c14b7 /qml
parent1a5267d3b2fd9fd67bb2465f983ff8afa7217953 (diff)
downloadmageiawelcome-29563967c81cc9ba657bda4c20b39887df7520b5.tar
mageiawelcome-29563967c81cc9ba657bda4c20b39887df7520b5.tar.gz
mageiawelcome-29563967c81cc9ba657bda4c20b39887df7520b5.tar.bz2
mageiawelcome-29563967c81cc9ba657bda4c20b39887df7520b5.tar.xz
mageiawelcome-29563967c81cc9ba657bda4c20b39887df7520b5.zip
Start with Welcome screen also in RTL mode
Diffstat (limited to 'qml')
-rw-r--r--qml/mw-ui.qml9
1 files changed, 8 insertions, 1 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml
index e3707a9..0d6d8ef 100644
--- a/qml/mw-ui.qml
+++ b/qml/mw-ui.qml
@@ -382,7 +382,7 @@ Rectangle {
anchors.topMargin: 0
anchors { fill: parent; bottomMargin: startCB.implicitHeight +10 }
model: (user == 'live' ? itemModelLive : itemModel)
- preferredHighlightBegin: 0; preferredHighlightEnd: 0
+ preferredHighlightBegin: 0; preferredHighlightEnd: view.width
highlightRangeMode: ListView.StrictlyEnforceRange
orientation: ListView.Horizontal
snapMode: ListView.SnapOneItem; flickDeceleration: 2000
@@ -431,6 +431,13 @@ Rectangle {
onClicked: view.currentIndex = index
}
}
+
+ Rectangle {
+ Layout.preferredWidth: 8
+ Layout.preferredHeight: buttonbox.height
+ color: buttonbox.color
+ }
+
}
}
Row {