From 7c1918857a7318802ee756ffa5baaa047fd3ffc2 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Sat, 4 Apr 2026 13:37:07 -0400 Subject: [PATCH] Fix pointer on MentionChip --- lib/widgets/chat_page/html/mention_chip.dart | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/lib/widgets/chat_page/html/mention_chip.dart b/lib/widgets/chat_page/html/mention_chip.dart index 6e9b741..0f80617 100644 --- a/lib/widgets/chat_page/html/mention_chip.dart +++ b/lib/widgets/chat_page/html/mention_chip.dart @@ -27,17 +27,19 @@ class MentionChip extends ConsumerWidget { ); } }, - child: Chip( - label: Text( - (membership == null ? null : "@${membership.displayName}") ?? - mention ?? - label, - style: TextStyle( - fontWeight: FontWeight.bold, - color: Theme.of(context).colorScheme.onPrimary, + child: IgnorePointer( + child: Chip( + label: Text( + (membership == null ? null : "@${membership.displayName}") ?? + mention ?? + label, + style: TextStyle( + fontWeight: FontWeight.bold, + color: Theme.of(context).colorScheme.onPrimary, + ), ), + backgroundColor: Theme.of(context).colorScheme.primary, ), - backgroundColor: Theme.of(context).colorScheme.primary, ), ); }