From 29563967c81cc9ba657bda4c20b39887df7520b5 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Tue, 22 Dec 2020 15:30:40 +0100 Subject: Start with Welcome screen also in RTL mode --- qml/mw-ui.qml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'qml') 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 { -- cgit v1.2.1