Skip to content
Snippets Groups Projects
Commit 2a02bdf3 authored by Benjamin Arnaud's avatar Benjamin Arnaud Committed by Steve Lhomme
Browse files

qml/NavigationWidget: Fix 'row' implicit width

parent 0c1cf3bf
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,9 @@ Templates.Pane {
anchors.verticalCenter: parent.verticalCenter
// NOTE: This is required for the implicitWidth.
visible: (source != "")
focus: (item && item.enabled)
// NOTE: We display the 'menu button' as a placeholder for the customize dialog.
......@@ -116,6 +119,9 @@ Templates.Pane {
anchors.verticalCenter: parent.verticalCenter
// NOTE: This is required for the implicitWidth.
visible: (source != "")
focus: (item && item.enabled && loaderA.focus === false)
source: (Player.hasPrograms
......@@ -135,6 +141,9 @@ Templates.Pane {
anchors.verticalCenter: parent.verticalCenter
// NOTE: This is required for the implicitWidth.
visible: (source != "")
focus: (item && item.enabled && (loaderA.focus === false && loaderB.focus === false))
source: (Player.isTeletextAvailable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment