diff --git a/kcms/lookandfeel/package/contents/ui/main.qml b/kcms/lookandfeel/package/contents/ui/main.qml --- a/kcms/lookandfeel/package/contents/ui/main.qml +++ b/kcms/lookandfeel/package/contents/ui/main.qml @@ -170,10 +170,11 @@ } } QtControls.Label { + Layout.fillWidth: true text: i18nd("kcm_lookandfeel", "Warning: your Plasma Desktop layout will be lost and reset to the default layout provided by the selected theme.") visible: resetCheckbox.checked wrapMode: Text.WordWrap - Layout.fillWidth: true + horizontalAlignment: Text.AlignRight //Align it with the resetCheckbox } Connections { target: kcm @@ -184,21 +185,21 @@ } } RowLayout { + QtControls.Button { + anchors.left: parent.left + text: i18n("Get New Looks...") + iconName: "get-hot-new-stuff" + onClicked: kcm.getNewStuff(); + } + Item { + Layout.fillWidth: true + } QtControls.CheckBox { id: resetCheckbox checked: kcm.resetDefaultLayout text: i18n("Use Desktop Layout from theme") onCheckedChanged: kcm.resetDefaultLayout = checked; } - Item { - Layout.fillWidth: true - } - QtControls.Button { - anchors.right: parent.right - text: i18n("Get New Looks...") - iconName: "get-hot-new-stuff" - onClicked: kcm.getNewStuff(); - } } }