Is there a way to access an API to change the curs...
# compose-desktop
m
Is there a way to access an API to change the cursor for Compose Desktop other than the
pointerHoverIcon
modifier? In some cases, it's not the best choice, like in the SplitPane, when I'm dragging the cursor shouldn't change back to default even if I'm not hovering over the handle, I tried to change it with awt using
window.cursor
but it doesn't work.
i
It looks like other ways are internal. You can try to use
pointerHoverIcon(icon, overrideDescendants = true)
on some base element during dragging
thank you color 1
m
I think this should fix the issue, Thanks!
👍 1