mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix: orphan FramelessDraggable
s too (#5576)
This commit is contained in:
parent
cda8fa2a65
commit
af309b726f
|
@ -35,7 +35,7 @@
|
||||||
- Bugfix: Fixed a crash when tab completing while having an invalid plugin loaded. (#5401)
|
- Bugfix: Fixed a crash when tab completing while having an invalid plugin loaded. (#5401)
|
||||||
- Bugfix: Fixed windows on Windows not saving correctly when snapping them to the edges. (#5478)
|
- Bugfix: Fixed windows on Windows not saving correctly when snapping them to the edges. (#5478)
|
||||||
- Bugfix: Fixed user info card popups adding duplicate line to log files. (#5499)
|
- Bugfix: Fixed user info card popups adding duplicate line to log files. (#5499)
|
||||||
- Bugfix: Fixed tooltips and input completion popups not working after moving a split. (#5541)
|
- Bugfix: Fixed tooltips and input completion popups not working after moving a split. (#5541, #5576)
|
||||||
- Bugfix: Fixed rare issue on shutdown where the client would hang. (#5557)
|
- Bugfix: Fixed rare issue on shutdown where the client would hang. (#5557)
|
||||||
- Bugfix: Fixed `/clearmessages` not working with more than one window. (#5489)
|
- Bugfix: Fixed `/clearmessages` not working with more than one window. (#5489)
|
||||||
- Bugfix: Fixed splits staying paused after unfocusing Chatterino in certain configurations. (#5504)
|
- Bugfix: Fixed splits staying paused after unfocusing Chatterino in certain configurations. (#5504)
|
||||||
|
|
|
@ -505,7 +505,7 @@ bool BaseWindow::event(QEvent *event)
|
||||||
}
|
}
|
||||||
|
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0)
|
#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
|
// 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)
|
// NOTE that this currently does not retain their original transient parent (which is the window it was created under)
|
||||||
|
|
Loading…
Reference in a new issue