Skip to content
Snippets Groups Projects
Commit 7544444b authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Pierre Lamot
Browse files

qml: always show context button in last column of KeyNavigableTableView

parent f87e7388
No related branches found
No related tags found
No related merge requests found
......@@ -263,6 +263,18 @@ NavigableFocusScope {
}
}
}
Widgets.ContextButton {
anchors.right: content.right
anchors.top: content.top
anchors.bottom: content.bottom
backgroundColor: hovered || activeFocus ?
VLCStyle.colors.getBgColor( lineView.selected, hovered,
activeFocus ) : "transparent"
onClicked: root.contextMenuButtonClicked(this, lineView.rowModel)
visible: hoverArea.containsMouse
}
}
}
......
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