We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50e0707 commit 942ae66Copy full SHA for 942ae66
xcb/dnotitlebarwindowhelper.cpp
@@ -514,6 +514,12 @@ bool DNoTitlebarWindowHelper::windowEvent(QEvent *event)
514
{
515
QWindow *w = this->window();
516
517
+ // TODO Crashed when delete by Vtable.
518
+ if (event->type() == QEvent::DeferredDelete) {
519
+ VtableHook::resetVtable(w);
520
+ return w->event(event);
521
+ }
522
+
523
// get touch begin position
524
static bool isTouchDown = false;
525
static QPointF touchBeginPosition;
0 commit comments