From 76f2d2a6b0c5e83375cffe14c77501592e493ff7 Mon Sep 17 00:00:00 2001 From: Lemmy Date: Fri, 13 Mar 2026 14:34:54 -0400 Subject: [PATCH] feat(notif): added a shorcut to the settings in the notification history panel --- .../NotificationHistory/NotificationHistoryPanel.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Modules/Panels/NotificationHistory/NotificationHistoryPanel.qml b/Modules/Panels/NotificationHistory/NotificationHistoryPanel.qml index 6117f45cb..130926be6 100644 --- a/Modules/Panels/NotificationHistory/NotificationHistoryPanel.qml +++ b/Modules/Panels/NotificationHistory/NotificationHistoryPanel.qml @@ -6,7 +6,9 @@ import Quickshell.Services.Notifications import Quickshell.Wayland import qs.Commons import qs.Modules.MainScreen +import qs.Modules.Panels.Settings import qs.Services.System +import qs.Services.UI import qs.Widgets // Notification History panel @@ -421,6 +423,16 @@ SmartPanel { } } + NIconButton { + icon: "settings" + tooltipText: I18n.tr("common.settings") + baseSize: Style.baseWidgetSize * 0.8 + onClicked: { + SettingsPanelService.openToTab(SettingsPanel.Tab.Notifications, 0, screen); + root.close(); + } + } + NIconButton { icon: "close" tooltipText: I18n.tr("common.close")