diff --git a/scripts/system/settings/qml/SettingSlider.qml b/scripts/system/settings/qml/SettingSlider.qml index e3e4d42527..9bd019afaa 100644 --- a/scripts/system/settings/qml/SettingSlider.qml +++ b/scripts/system/settings/qml/SettingSlider.qml @@ -65,9 +65,17 @@ Item { handle: Rectangle { x: slider.leftPadding + slider.visualPosition * (slider.availableWidth - width) y: slider.topPadding + slider.availableHeight / 2 - height / 2 - implicitWidth: 5 - implicitHeight: 20 - color: "#5153bd" + implicitWidth: 20 + implicitHeight: 40 + color: "black" + + Rectangle { + width: 16 + height: 36 + color: "gray" + anchors.horizontalCenter: parent.horizontalCenter; + anchors.verticalCenter: parent.verticalCenter; + } } background: Rectangle { diff --git a/scripts/system/settings/settings.js b/scripts/system/settings/settings.js index e120271358..de7206d70e 100644 --- a/scripts/system/settings/settings.js +++ b/scripts/system/settings/settings.js @@ -13,7 +13,6 @@ // TODO: Fullscreen display? // TODO: Replace bool setting with switch? -// FIXME: Setting slider handle // TODO: Setting slider incorrect radius around filled background? // FIXME: Combobox overflows text onto arrow visual