From b9e733c5cca7209b0ad8dd17589a9714f50b4395 Mon Sep 17 00:00:00 2001 From: avashilling <165050625+avashilling@users.noreply.github.com> Date: Wed, 16 Jul 2025 12:24:49 -0400 Subject: [PATCH] 3467 grammar buttons not clickable over icon (#3472) * fix: make grammar buttons clickable from all places * formatting --------- Co-authored-by: ggurdin --- .../morph_analytics_list_view.dart | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/pangea/analytics_details_popup/morph_analytics_list_view.dart b/lib/pangea/analytics_details_popup/morph_analytics_list_view.dart index 6e164fe5e..a4804166a 100644 --- a/lib/pangea/analytics_details_popup/morph_analytics_list_view.dart +++ b/lib/pangea/analytics_details_popup/morph_analytics_list_view.dart @@ -222,14 +222,13 @@ class MorphTagChip extends StatelessWidget { width: 28.0, height: 28.0, child: unlocked - ? IconButton.filled( - style: IconButton.styleFrom( - backgroundColor: - theme.colorScheme.surface.withAlpha(180), + ? Container( + decoration: BoxDecoration( + color: theme.colorScheme.surface.withAlpha(180), + borderRadius: BorderRadius.circular(20), ), padding: const EdgeInsets.all(4), - onPressed: () => {}, - icon: MorphIcon( + child: MorphIcon( morphFeature: feature, morphTag: morphTag, ),