When I’m dragging an item from a tablewidget, what triggers the the drag events, is it the QTableWidget, or the QTableWidgetItem? Or, something all together different? I need to alter my mimeData when it gets selected and is being dragged to a list.
Share
Ok, I figured out my problem:
It’s the
QTableWidgetthat triggers the event. The problem I was having was that I setsetDragEnabled(True)after I was trying to use my overridden event function.