diff --git a/dots/.config/quickshell/ii/modules/common/widgets/CircularProgress.qml b/dots/.config/quickshell/ii/modules/common/widgets/CircularProgress.qml index e1b2effaf..7bf07e0fa 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/CircularProgress.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/CircularProgress.qml @@ -42,8 +42,7 @@ Item { active: root.fill anchors.fill: parent - sourceComponent: Rectangle { - radius: 9999 + sourceComponent: Circle { color: root.colSecondary } } diff --git a/dots/.config/quickshell/ii/modules/common/widgets/ClippedProgressBar.qml b/dots/.config/quickshell/ii/modules/common/widgets/ClippedProgressBar.qml index af5407223..3a09dee7b 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/ClippedProgressBar.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/ClippedProgressBar.qml @@ -40,10 +40,9 @@ ProgressBar { implicitWidth: valueBarWidth } - contentItem: Rectangle { + contentItem: Pill { id: contentItem anchors.fill: parent - radius: 9999 color: root.trackColor visible: false diff --git a/dots/.config/quickshell/ii/modules/waffle/looks/WScrollBar.qml b/dots/.config/quickshell/ii/modules/waffle/looks/WScrollBar.qml index bdc962806..65b4eae2d 100644 --- a/dots/.config/quickshell/ii/modules/waffle/looks/WScrollBar.qml +++ b/dots/.config/quickshell/ii/modules/waffle/looks/WScrollBar.qml @@ -11,10 +11,9 @@ ScrollBar { active: hovered || pressed property color color: Looks.colors.controlBg - contentItem: Rectangle { + contentItem: Pill { implicitWidth: root.active ? 4 : 2 implicitHeight: root.visualSize - radius: 9999 color: root.color opacity: root.policy === ScrollBar.AlwaysOn || (root.active && root.size < 1.0) ? 0.5 : 0