Reduced click effect area to the chip shape
This commit is contained in:
parent
1056e60f96
commit
9322691565
@ -592,6 +592,9 @@ fun RefChip(
|
||||
) {
|
||||
Box(
|
||||
modifier = Modifier
|
||||
.padding(horizontal = 4.dp)
|
||||
.clip(RoundedCornerShape(16.dp))
|
||||
.background(MaterialTheme.colors.primary)
|
||||
.combinedClickable(
|
||||
onDoubleClick = onCheckoutRef,
|
||||
onClick = {}
|
||||
@ -601,10 +604,7 @@ fun RefChip(
|
||||
items = contextMenuItemsList
|
||||
) {
|
||||
Row(
|
||||
modifier = modifier
|
||||
.padding(horizontal = 4.dp)
|
||||
.clip(RoundedCornerShape(16.dp))
|
||||
.background(MaterialTheme.colors.primary),
|
||||
modifier = modifier,
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
) {
|
||||
Icon(
|
||||
|
Loading…
Reference in New Issue
Block a user