From 4b05e7a0fa25e7c0d52c09c4e09fa3ee93d38288 Mon Sep 17 00:00:00 2001 From: purian23 Date: Mon, 13 Jul 2026 12:37:04 -0400 Subject: [PATCH] refactor(dms-updater): remove hidden updates display in popout view (cherry picked from commit 7ab0e015734dbc5563906e7ebc7fae7f09e9af46) --- .../DankBar/Popouts/SystemUpdatePopout.qml | 17 +---------------- quickshell/Services/SystemUpdateService.qml | 1 - 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/quickshell/Modules/DankBar/Popouts/SystemUpdatePopout.qml b/quickshell/Modules/DankBar/Popouts/SystemUpdatePopout.qml index 7306b77be..721bbd43d 100644 --- a/quickshell/Modules/DankBar/Popouts/SystemUpdatePopout.qml +++ b/quickshell/Modules/DankBar/Popouts/SystemUpdatePopout.qml @@ -230,21 +230,6 @@ DankPopout { elide: Text.ElideRight } - StyledText { - id: hiddenRow - anchors.left: parent.left - anchors.right: parent.right - anchors.top: backendsRow.visible ? backendsRow.bottom : header.bottom - anchors.leftMargin: Theme.spacingL - anchors.rightMargin: Theme.spacingL - anchors.topMargin: Theme.spacingXS - visible: SystemUpdateService.hiddenUpdateCount > 0 && !SystemUpdateService.isUpgrading - text: I18n.tr("%1 hidden (AUR disabled or ignored)").arg(SystemUpdateService.hiddenUpdateCount) - font.pixelSize: Theme.fontSizeSmall - color: Theme.surfaceVariantText - wrapMode: Text.WordWrap - } - Row { id: buttonsRow anchors.left: parent.left @@ -340,7 +325,7 @@ DankPopout { id: bodyArea anchors.left: parent.left anchors.right: parent.right - anchors.top: hiddenRow.visible ? hiddenRow.bottom : (backendsRow.visible ? backendsRow.bottom : header.bottom) + anchors.top: backendsRow.visible ? backendsRow.bottom : header.bottom anchors.bottom: buttonsRow.top anchors.leftMargin: Theme.spacingL anchors.rightMargin: Theme.spacingL diff --git a/quickshell/Services/SystemUpdateService.qml b/quickshell/Services/SystemUpdateService.qml index 70cd686f8..90e7b52c0 100644 --- a/quickshell/Services/SystemUpdateService.qml +++ b/quickshell/Services/SystemUpdateService.qml @@ -33,7 +33,6 @@ Singleton { property int nextCheckUnix: 0 readonly property int updateCount: availableUpdates.length - readonly property int hiddenUpdateCount: _rawUpdates.length - availableUpdates.length readonly property bool helperAvailable: sysupdateAvailable && backends.length > 0 Connections {