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 @@ -38,6 +38,7 @@ property alias labelOpacity: textLabel.opacity property alias draggable: dragArea.enabled property alias icon: clientIcon.source + property alias iconOpacity: clientIcon.opacity property alias iconUsesPlasmaTheme: clientIcon.usesPlasmaTheme property string type diff --git a/applet/contents/ui/StreamListItem.qml b/applet/contents/ui/StreamListItem.qml --- a/applet/contents/ui/StreamListItem.qml +++ b/applet/contents/ui/StreamListItem.qml @@ -41,4 +41,5 @@ labelOpacity: onlyOne ? 1 : 0.6 icon: IconName iconUsesPlasmaTheme: false + iconOpacity: Corked ? 0.6 : 1 }