e.g. ```modifier = Modifier .wrapContentHeight(...
# compose-desktop
p
e.g.
Copy code
modifier = Modifier
  .wrapContentHeight()
  .clickable(
    onClick = {
      onItemClickEvent(ROW_CLICK)
    },
    onDoubleClick = {
      onItemClickEvent(ROW_DOUBLE_CLICK)
    }
  )
This plays a ripple and then after about 500ms only the callback is invoked. Pretty sure no one ever wants that behavior.