fix: orphan FramelessDraggables too (#5576)

This commit is contained in:
nerix
2024-08-31 11:16:17 +02:00
committed by GitHub
parent cda8fa2a65
commit af309b726f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -505,7 +505,7 @@ bool BaseWindow::event(QEvent *event)
}
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
if (this->flags_.has(DontFocus) || this->flags_.has(Dialog))
if (this->flags_.hasAny(DontFocus, Dialog, FramelessDraggable))
{
// This certain windows (e.g. TooltipWidget, input completion widget, and the search popup) retains their nullptr parent
// NOTE that this currently does not retain their original transient parent (which is the window it was created under)