From ade14d9338c1bd9a5bdc5540694f89d62eb440a6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 26 Mar 2024 16:35:22 +0700 Subject: [PATCH] notif action button hover cursor -> pointing hand --- .config/ags/modules/.commonwidgets/notification.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.config/ags/modules/.commonwidgets/notification.js b/.config/ags/modules/.commonwidgets/notification.js index 8aa167609..2602573d1 100644 --- a/.config/ags/modules/.commonwidgets/notification.js +++ b/.config/ags/modules/.commonwidgets/notification.js @@ -183,17 +183,19 @@ export default ({ hexpand: true, className: `notif-action notif-action-${notifObject.urgency}`, onClicked: () => destroyWithAnims(), + setup: setupCursorHover, child: Label({ label: 'Close', - }) + }), }), ...notifObject.actions.map(action => Widget.Button({ hexpand: true, className: `notif-action notif-action-${notifObject.urgency}`, onClicked: () => notifObject.invoke(action.id), + setup: setupCursorHover, child: Label({ label: action.label, - }) + }), })) ], })