Here's another one for you guys to point me to where I messed up

I'm trying to get DnD to work on rows of a QTableWidget. I've gotten it to Drag & Drop the row (by turning off dragenable & dropenable except on the first column -- which probably isn't very user friendly, but keeps it from shifting all the bloody data)... but even with setDragDropOverwriteMode(false), the data in the drop target is overwritten (instead of having the moved row inserted, like the docs say).

I suspect I'll have to derive from the QTableWidget to get the data not allowed to drop off the table (i.e. it'd vanish) -- but do I need to derive to get the row move properly?

I'll post code if needed, but it's really just the QTableWidgetItem creations & the table & settings are from designer (and, yes, I tried to put the Overwrite Mode thing in my code... but no difference between true or false).

Thanks,
Vycke