tags:

views:

39

answers:

1

How can I change the mouse cursor while dragging? I don't want the Blocking cursor or the Arrow with the Plus sign to be displayed, just the arrow cursor.

I'm using Qt 4.6.

Thanks

A: 

Use setDragCursor. Note this takes a QPixmap, so you can't just pick the arrow cursor - you need to give it an image. It doesn't look like you can use an alternative native cursor.

There has been some discussion on this.

Skilldrick
I tried that, but no luck at all. Maybe it's an X thing. I think a read something about this not working on some X desktops. I'm on Fedora 10, using KDE.
Daniel