https://bugs.kde.org/show_bug.cgi?id=385661
Christoph Cullmann <cullm...@kde.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cullm...@kde.org Status|UNCONFIRMED |NEEDSINFO Resolution|--- |WAITINGFORINFO --- Comment #2 from Christoph Cullmann <cullm...@kde.org> --- Can not reproduce that by wild dragging. Not sure how it can crash without going back into Kate code inside the line with start in: void KateTabButton::mouseMoveEvent(QMouseEvent *event) { // possibly start drag event if (QPoint(event->globalPos() - m_mouseDownPosition).manhattanLength() > QApplication::startDragDistance()) { QMimeData *mimeData = new QMimeData; mimeData->setData(QStringLiteral("application/x-dndkatetabbutton"), QByteArray()); mimeData->setUrls({m_url}); auto drag = new QDrag(this); drag->setMimeData(mimeData); drag->setDragCursor(QPixmap(), Qt::MoveAction); drag->start(Qt::MoveAction); event->accept(); } QAbstractButton::mouseMoveEvent(event); } -- You are receiving this mail because: You are watching all bug changes.