diff --git a/Modules/Settings/AboutTab.qml b/Modules/Settings/AboutTab.qml
index feff20a4..489179ff 100644
--- a/Modules/Settings/AboutTab.qml
+++ b/Modules/Settings/AboutTab.qml
@@ -259,7 +259,7 @@ Item {
}
StyledText {
- text: `DankMaterialShell is a modern desktop inspired by MUI 3.
+ text: `DankMaterialShell is a modern desktop with a material-ish design.
The goal is to provide a high level of functionality and customization so that it can be a suitable replacement for complete desktop environments like Gnome, KDE, or Cosmic.
`
textFormat: Text.RichText
diff --git a/Modules/Settings/PersonalizationTab.qml b/Modules/Settings/PersonalizationTab.qml
index 2c32bfdc..0095d775 100644
--- a/Modules/Settings/PersonalizationTab.qml
+++ b/Modules/Settings/PersonalizationTab.qml
@@ -1345,12 +1345,18 @@ Item {
}
}
- Row {
+ Rectangle {
width: parent.width
- spacing: Theme.spacingM
+ height: 60
+ radius: Theme.cornerRadius
+ color: "transparent"
Column {
- width: parent.width - fontScaleControls.width - Theme.spacingM
+ anchors.left: parent.left
+ anchors.right: fontScaleControls.left
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.leftMargin: Theme.spacingM
+ anchors.rightMargin: Theme.spacingM
spacing: Theme.spacingXS
StyledText {
@@ -1361,7 +1367,7 @@ Item {
}
StyledText {
- text: "Scale all font sizes (" + (SettingsData.fontScale * 100).toFixed(0) + "%)"
+ text: "Scale all font sizes"
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: parent.width
@@ -1371,8 +1377,12 @@ Item {
Row {
id: fontScaleControls
- spacing: Theme.spacingS
+ width: 180
+ height: 36
+ anchors.right: parent.right
+ anchors.rightMargin: 0
anchors.verticalCenter: parent.verticalCenter
+ spacing: Theme.spacingS
DankActionButton {
buttonSize: 32