From 82d7e29213b3ecddc53b0ba453441d5a34c1b721 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Tue, 12 Aug 2025 10:58:13 -0400 Subject: [PATCH] Formatting --- Modules/SidePanel/Cards/UtilitiesCard.qml | 51 +++++++++++------------ Modules/SidePanel/SidePanel.qml | 1 - 2 files changed, 25 insertions(+), 27 deletions(-) diff --git a/Modules/SidePanel/Cards/UtilitiesCard.qml b/Modules/SidePanel/Cards/UtilitiesCard.qml index 6800432..6f04815 100644 --- a/Modules/SidePanel/Cards/UtilitiesCard.qml +++ b/Modules/SidePanel/Cards/UtilitiesCard.qml @@ -6,29 +6,28 @@ import qs.Services import qs.Widgets // Utilities: record & wallpaper - NBox { - Layout.fillWidth: true - Layout.preferredWidth: 1 - implicitHeight: utilRow.implicitHeight + Style.marginMedium * 2 * scaling - RowLayout { - id: utilRow - anchors.fill: parent - anchors.margins: Style.marginSmall * scaling - spacing: sidePanel.cardSpacing - Item { - Layout.fillWidth: true - } - // Record - NIconButton { - icon: "fiber_manual_record" - } - // Wallpaper - NIconButton { - icon: "image" - } - Item { - Layout.fillWidth: true - } - } - } - \ No newline at end of file +NBox { + Layout.fillWidth: true + Layout.preferredWidth: 1 + implicitHeight: utilRow.implicitHeight + Style.marginMedium * 2 * scaling + RowLayout { + id: utilRow + anchors.fill: parent + anchors.margins: Style.marginSmall * scaling + spacing: sidePanel.cardSpacing + Item { + Layout.fillWidth: true + } + // Record + NIconButton { + icon: "fiber_manual_record" + } + // Wallpaper + NIconButton { + icon: "image" + } + Item { + Layout.fillWidth: true + } + } +} diff --git a/Modules/SidePanel/SidePanel.qml b/Modules/SidePanel/SidePanel.qml index 70a6eff..c8936d8 100644 --- a/Modules/SidePanel/SidePanel.qml +++ b/Modules/SidePanel/SidePanel.qml @@ -125,7 +125,6 @@ NLoader { PowerProfileCard {} UtilitiesCard {} - } } }