mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 08:03:34 +02:00
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:
parent
d9f4762109
commit
cb17022c6c
2 changed files with 15 additions and 15 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
(() => {
|
||||
|
|
Loading…
Reference in a new issue