diff --git a/applets/systemtray/package/contents/ui/main.qml b/applets/systemtray/package/contents/ui/main.qml index 08fa26ca0..e437a871e 100644 --- a/applets/systemtray/package/contents/ui/main.qml +++ b/applets/systemtray/package/contents/ui/main.qml @@ -234,6 +234,9 @@ MouseArea { // Draws a line between the applet dialog and the panel PlasmaCore.SvgItem { + // Only draw for popups of panel applets, not desktop applets + visible: [PlasmaCore.Types.TopEdge, PlasmaCore.Types.LeftEdge, PlasmaCore.Types.RightEdge, PlasmaCore.Types.BottomEdge] + .includes(plasmoid.location) anchors { top: plasmoid.location == PlasmaCore.Types.BottomEdge ? undefined : parent.top left: plasmoid.location == PlasmaCore.Types.RightEdge ? undefined : parent.left