fix: non-native drag on Windows (#5051)
This commit is contained in:
@@ -1091,6 +1091,11 @@ bool BaseWindow::handleNCHITTEST(MSG *msg, long *result)
|
||||
return true;
|
||||
}
|
||||
|
||||
if (widget == this)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
return recursiveCheckMouseTracking(widget->parentWidget());
|
||||
};
|
||||
|
||||
|
||||
@@ -159,7 +159,8 @@ ReplyThreadPopup::ReplyThreadPopup(bool closeAutomatically, Split *split)
|
||||
this->thread_->markUnsubscribed();
|
||||
}
|
||||
});
|
||||
hbox->addWidget(this->ui_.notificationCheckbox, 1);
|
||||
hbox->addWidget(this->ui_.notificationCheckbox);
|
||||
hbox->addStretch(1);
|
||||
this->ui_.notificationCheckbox->setFocusPolicy(Qt::NoFocus);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user