diff --git a/desktoppackage/contents/applet/CompactApplet.qml b/desktoppackage/contents/applet/CompactApplet.qml --- a/desktoppackage/contents/applet/CompactApplet.qml +++ b/desktoppackage/contents/applet/CompactApplet.qml @@ -99,25 +99,25 @@ PlasmaCore.FrameSvgItem { id: expandedItem anchors.fill: parent - imagePath: "widgets/tabbar" + imagePath: "widgets/tasks" visible: fromCurrentTheme && opacity > 0 prefix: { var prefix; switch (plasmoid.location) { case PlasmaCore.Types.LeftEdge: - prefix = "west-active-tab"; + prefix = "west-focus"; break; case PlasmaCore.Types.TopEdge: - prefix = "north-active-tab"; + prefix = "north-focus"; break; case PlasmaCore.Types.RightEdge: - prefix = "east-active-tab"; + prefix = "east-focus"; break; default: - prefix = "south-active-tab"; + prefix = "south-focus"; } if (!hasElementPrefix(prefix)) { - prefix = "active-tab"; + prefix = "focus"; } return prefix; }