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
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
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.