From 783e9fb1408a247a52f0fc0b607be46fc7c6f510 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Fri, 5 Sep 2025 14:46:08 -0400 Subject: [PATCH] AboutTab: improved look of "Download latest release" --- Modules/SettingsPanel/Tabs/AboutTab.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Modules/SettingsPanel/Tabs/AboutTab.qml b/Modules/SettingsPanel/Tabs/AboutTab.qml index a4cb10e..1fffadb 100644 --- a/Modules/SettingsPanel/Tabs/AboutTab.qml +++ b/Modules/SettingsPanel/Tabs/AboutTab.qml @@ -60,7 +60,7 @@ ColumnLayout { Rectangle { Layout.alignment: Qt.AlignCenter Layout.topMargin: Style.marginS * scaling - Layout.preferredWidth: updateText.implicitWidth + 46 * scaling + Layout.preferredWidth: Math.round(updateRow.implicitWidth + (Style.marginL * scaling * 2)) Layout.preferredHeight: Math.round(Style.barHeight * scaling) radius: Style.radiusL * scaling color: updateArea.containsMouse ? Color.mPrimary : Color.transparent @@ -85,11 +85,12 @@ ColumnLayout { } RowLayout { + id: updateRow anchors.centerIn: parent spacing: Style.marginS * scaling NIcon { - text: "system_update" + text: "download" font.pointSize: Style.fontSizeXXL * scaling color: updateArea.containsMouse ? Color.mSurface : Color.mPrimary }