Skip to content

Commit

Permalink
Added double click for trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurKun21 committed Jun 9, 2024
1 parent 8df550f commit d85b27a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,8 @@ private fun BattleConfigListItem(
modifier = Modifier
.combinedClickable(
onClick = onClick,
onLongClick = { longClickState.value.invoke() }
onLongClick = { longClickState.value.invoke() },
onDoubleClick = { longClickState.value.invoke() },
)
.padding(16.dp, 5.dp)
) {
Expand Down

0 comments on commit d85b27a

Please sign in to comment.