diff --git a/kcm/package/contents/ui/Output.qml b/kcm/package/contents/ui/Output.qml --- a/kcm/package/contents/ui/Output.qml +++ b/kcm/package/contents/ui/Output.qml @@ -54,7 +54,6 @@ radius: 4 color: palette.window smooth: true - clip: true border { color: isSelected ? palette.highlight : palette.shadow diff --git a/kcm/package/contents/ui/Screen.qml b/kcm/package/contents/ui/Screen.qml --- a/kcm/package/contents/ui/Screen.qml +++ b/kcm/package/contents/ui/Screen.qml @@ -19,7 +19,7 @@ import QtQuick.Controls 2.3 as Controls import org.kde.kirigami 2.5 as Kirigami -Rectangle { +Controls.ScrollView { property var outputs property size totalSize @@ -46,11 +46,11 @@ property int yOffset: (height - totalSize.height / relativeFactor) / 2; implicitHeight: Math.max(root.height * 0.4, units.gridUnit * 13) - radius: units.smallSpacing - color: "white" - border.color: Qt.tint(Kirigami.Theme.textColor, Qt.rgba(Kirigami.Theme.backgroundColor.r, Kirigami.Theme.backgroundColor.g, Kirigami.Theme.backgroundColor.b, 0.8)) - border.width: 1 - clip: true + + Kirigami.Theme.colorSet: Kirigami.Theme.View + Kirigami.Theme.inherit: false + + Component.onCompleted: background.visible = true; Row { z: 90