Adjusted slider radius.

This does not fully fix the issue, but it does minimize it.

Signed-off-by: armored-dragon <publicmail@armoreddragon.com>
This commit is contained in:
armored-dragon 2025-04-12 21:58:42 -05:00
parent d9f4762109
commit cb17022c6c
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B
2 changed files with 15 additions and 15 deletions

View file

@ -79,21 +79,22 @@ Item {
}
background: Rectangle {
x: slider.leftPadding
y: slider.topPadding + slider.availableHeight / 2 - height / 2
implicitWidth: 200
implicitHeight: 20
width: slider.availableWidth
height: implicitHeight
radius: 2
color: "white"
clip: true;
x: slider.leftPadding;
y: slider.topPadding + slider.availableHeight / 2 - height / 2;
implicitWidth: 200;
implicitHeight: 20;
width: slider.availableWidth;
height: implicitHeight;
radius: 10;
color: "#ffffff";
clip: true;
Rectangle {
width: slider.visualPosition * parent.width
height: parent.height
color: "#5153bd"
radius: 2
Rectangle {
width: slider.visualPosition * parent.width + 1;
height: parent.height + 1;
color: "#5153bd";
radius: parent.radius;
antialiasing: false;
}
}

View file

@ -13,7 +13,6 @@
// TODO: Fullscreen display?
// TODO: Replace bool setting with switch?
// TODO: Setting slider incorrect radius around filled background?
// FIXME: Combobox overflows text onto arrow visual
(() => {