I have a GUI application with a QListWidget
that contain QCheckBox
's. The QListWidget
has the option InternalMove
dragDropMode
activated. I am having some issues with some 'out of ordinary' use of the drag-drop utility.
It looks like this:
The behavior is all correct, except when I try to drag-drop an item over 'itself'. If I try to drop the item 'B' between 'A' and 'B', nothing happens, which is what I would expect. However, if I try to drop 'B' between 'B' and 'C'. The widget of item 'B' just disappears, but the 'blank' line is still drag-drop'able, which I did not expect. Any idea why would this happen?