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 @@ -184,21 +184,21 @@ } } RowLayout { - 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(); } + Item { + Layout.fillWidth: true + } + QtControls.CheckBox { + id: resetCheckbox + checked: kcm.resetDefaultLayout + text: i18n("Use Desktop Layout from theme") + onCheckedChanged: kcm.resetDefaultLayout = checked; + } } }