diff options
| author | Leander Scherer <leander@schererleander.de> | 2026-06-29 21:08:42 +0200 |
|---|---|---|
| committer | Leander Scherer <leander@schererleander.de> | 2026-06-29 21:22:33 +0200 |
| commit | 67b7245bf96cf954d90719e800cf9618ffaa4feb (patch) | |
| tree | 2723c3db278840150985cdc630487ff175d330d9 /modules/system/quickshell/ThinSlider.qml | |
| parent | d4fa3d0533c8dac688e38413403815de1802339e (diff) | |
chore: cleanup sway, quickshell
Diffstat (limited to 'modules/system/quickshell/ThinSlider.qml')
| -rw-r--r-- | modules/system/quickshell/ThinSlider.qml | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/modules/system/quickshell/ThinSlider.qml b/modules/system/quickshell/ThinSlider.qml deleted file mode 100644 index 61a9ce8..0000000 --- a/modules/system/quickshell/ThinSlider.qml +++ /dev/null @@ -1,40 +0,0 @@ -import QtQuick -import QtQuick.Controls - -Slider { - id: root - - readonly property color colorTrack: Theme.sliderTrack - readonly property color colorProgress: Theme.accent - readonly property color colorHandle: Theme.sliderHandle - - implicitHeight: 14 - padding: 0 - - background: Rectangle { - x: root.leftPadding - y: root.topPadding + root.availableHeight / 2 - height / 2 - implicitWidth: 200 - implicitHeight: 2 - width: root.availableWidth - height: implicitHeight - radius: height / 2 - color: root.colorTrack - - Rectangle { - width: root.handle.x + (root.handle.width / 2) - height: parent.height - color: root.colorProgress - radius: height / 2 - } - } - - handle: Rectangle { - x: root.leftPadding + root.visualPosition * (root.availableWidth - width) - y: root.topPadding + root.availableHeight / 2 - height / 2 - implicitWidth: 2 - implicitHeight: 10 - radius: width / 2 - color: root.colorHandle - } -} |
