fix: always allow show menu on click activity participant (#4146)

This commit is contained in:
ggurdin 2025-09-25 13:44:57 -04:00 committed by GitHub
parent ac4cb98d34
commit 7380e8921e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,18 +38,18 @@ class ActivityParticipantIndicator extends StatelessWidget {
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return AbsorbPointer(
absorbing: !selectable,
child: MouseRegion(
cursor: SystemMouseCursors.basic,
child: GestureDetector(
onTap: onTap ??
(user != null
? () => showMemberActionsPopupMenu(
context: context,
user: user!,
)
: null),
return MouseRegion(
cursor: SystemMouseCursors.basic,
child: GestureDetector(
onTap: onTap ??
(user != null
? () => showMemberActionsPopupMenu(
context: context,
user: user!,
)
: null),
child: AbsorbPointer(
absorbing: !selectable,
child: HoverBuilder(
builder: (context, hovered) {
return Opacity(