mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-25 12:52:09 +00:00
notif action button hover cursor -> pointing hand
This commit is contained in:
parent
3c3cc01bea
commit
68f809019a
1 changed files with 4 additions and 2 deletions
|
|
@ -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,
|
||||
})
|
||||
}),
|
||||
}))
|
||||
],
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue