From 4d24791ec18c05dda462cf23f8e5dd395977e769 Mon Sep 17 00:00:00 2001 From: Adam Laughlin Date: Wed, 26 Nov 2025 20:08:13 -0500 Subject: [PATCH] Control Center: hide shortcuts box if empty --- Modules/Panels/ControlCenter/Cards/ShortcutsCard.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Modules/Panels/ControlCenter/Cards/ShortcutsCard.qml b/Modules/Panels/ControlCenter/Cards/ShortcutsCard.qml index 2bb973f1..0d39665c 100644 --- a/Modules/Panels/ControlCenter/Cards/ShortcutsCard.qml +++ b/Modules/Panels/ControlCenter/Cards/ShortcutsCard.qml @@ -14,6 +14,7 @@ RowLayout { NBox { Layout.fillWidth: true Layout.preferredHeight: root.shortcutsHeight + visible: Settings.datga.controlCenter.shortcuts.left.length > 0 RowLayout { id: leftContent @@ -53,6 +54,7 @@ RowLayout { NBox { Layout.fillWidth: true Layout.preferredHeight: root.shortcutsHeight + visible: Settings.data.controlCenter.shortcuts.right.length > 0 RowLayout { id: rightContent