Qt 6.11 is out! See what's new in the release
blog
How to disable Pixmap of selected rows in QListWidget while dragging
-
Hello,
i have rows with a 140px height in QListWidget. If the user drag the rows with the mouse, one does not see the underlying folder into which the line could be pushed (see Screenshot).
Is it possible to get a simple DragCursor without the pixmap of each selected line without much effort?
Currently is only QListWidget with a QAbstractItemDelegate for row painting.Here you can see the dragging of 3 rows to a folder, you can't see anything :/

-
Hi,
You likely have to reimplement
startDragand handle the pixmap you want to use yourself. -
Hi,
You likely have to reimplement
startDragand handle the pixmap you want to use yourself.@SGaist Thank you, I was hoping there is a switch to disable :)
Then I must go this way. Many Thanks for your time.