diff options
-rw-r--r-- | qml/mw-ui.qml | 9 |
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 { |