fix: always allow show menu on click activity participant (#4146)
This commit is contained in:
parent
ac4cb98d34
commit
7380e8921e
1 changed files with 12 additions and 12 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue