| Summary: | Kate crashed on switch to window | ||
|---|---|---|---|
| Product: | [Applications] kate | Reporter: | George Diamantopoulos <georgediam> |
| Component: | general | Assignee: | KWrite Developers <kwrite-bugs-null> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | crash | CC: | christoph |
| Priority: | NOR | Keywords: | drkonqi, triaged |
| Version First Reported In: | 17.08.1 | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
George Diamantopoulos
2017-10-12 16:25:30 UTC
According to the backtrace, you were dragging one of Kate's tabs. Could you reproduce the steps to get the crash? 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);
}
Dear Bug Submitter, This bug has been in NEEDSINFO status with no change for at least 15 days. Please provide the requested information as soon as possible and set the bug status as REPORTED. Due to regular bug tracker maintenance, if the bug is still in NEEDSINFO status with no change in 30 days, the bug will be closed as RESOLVED > WORKSFORME due to lack of needed information. For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging If you have already provided the requested information, please set the bug status as REPORTED so that the KDE team knows that the bug is ready to be confirmed. Thank you for helping us make KDE software even better for everyone! Dear Bug Submitter, This bug has been in NEEDSINFO status with no change for at least 30 days. The bug is now closed as RESOLVED > WORKSFORME due to lack of needed information. For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging Thank you for helping us make KDE software even better for everyone! |