I have a ```Box(modifier = Modifier.draggable()) ...
# compose
d
I have a
Copy code
Box(modifier = Modifier.draggable()) {
  Button(modifier = Modifier.clickable())
}
If I start the drag inside the button, clickable() completely intercepts it, but I want it to behave like this: if drag touch slop is passed, then clickable() should be ignored and drag should be started. Is there a way to configure this?