From e6f3303cf233758c49a16cbb2eb219f478377f22 Mon Sep 17 00:00:00 2001 From: WhatsSkiLL Date: Wed, 15 Jul 2026 08:13:14 +0200 Subject: [PATCH] fix(android): enlarge attachment remove touch target (#106737) Co-authored-by: IWhatsskill <284122573+IWhatsskill@users.noreply.github.com> --- .../app/src/main/java/ai/openclaw/app/ui/chat/ChatScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/android/app/src/main/java/ai/openclaw/app/ui/chat/ChatScreen.kt b/apps/android/app/src/main/java/ai/openclaw/app/ui/chat/ChatScreen.kt index e25b3d561d2a..9b3ee99ac47b 100644 --- a/apps/android/app/src/main/java/ai/openclaw/app/ui/chat/ChatScreen.kt +++ b/apps/android/app/src/main/java/ai/openclaw/app/ui/chat/ChatScreen.kt @@ -1816,7 +1816,7 @@ private fun AttachmentChip( maxLines = 1, overflow = TextOverflow.Ellipsis, ) - Surface(onClick = onRemove, modifier = Modifier.size(22.dp), shape = CircleShape, color = ClawTheme.colors.canvas, contentColor = ClawTheme.colors.text) { + Surface(onClick = onRemove, modifier = Modifier.size(ClawTheme.spacing.touchTarget), shape = CircleShape, color = ClawTheme.colors.canvas, contentColor = ClawTheme.colors.text) { Box(contentAlignment = Alignment.Center) { Icon(imageVector = Icons.Default.Close, contentDescription = nativeString("Remove attachment"), modifier = Modifier.size(13.dp)) }