diff --git a/applet/contents/ui/ListItemBase.qml b/applet/contents/ui/ListItemBase.qml --- a/applet/contents/ui/ListItemBase.qml +++ b/applet/contents/ui/ListItemBase.qml @@ -108,11 +108,19 @@ } PlasmaComponents.ToolButton { id: contextMenuButton - Layout.preferredHeight: slider.height + Layout.preferredHeight: units.iconSizes.small Layout.preferredWidth: Layout.preferredHeight checkable: true - iconName: "application-menu" onClicked: contextMenu.show() + + PlasmaCore.IconItem { + anchors.fill: parent + source: "application-menu" + + // From Plasma's ToolButtonStyle: + active: parent.hovered + colorGroup: parent.hovered ? PlasmaCore.Theme.ButtonColorGroup : PlasmaCore.ColorScope.colorGroup + } } }