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 @@ -71,28 +71,27 @@ ColumnLayout { anchors.centerIn: parent - spacing: units.smallSpacing + spacing: 0 width: parent.width Layout.maximumHeight: parent.height Controls.Label { Layout.fillWidth: true Layout.margins: units.smallSpacing text: model.display + wrapMode: Text.Wrap horizontalAlignment: Text.AlignHCenter elide: Text.ElideRight - color: palette.text } Controls.Label { Layout.fillWidth: true - Layout.margins: units.smallSpacing + Layout.bottomMargin: units.smallSpacing text: "(" + model.size.width + "x" + model.size.height + ")" horizontalAlignment: Text.AlignHCenter elide: Text.ElideRight - color: palette.text } } }