Skip to content

Commit

Permalink
fix: StyledBehindWindowBlur crash in render thread
Browse files Browse the repository at this point in the history
as title.

pms: TASK-368399
  • Loading branch information
18202781743 committed Feb 27, 2025
1 parent 910d22e commit 092a361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/private/dquickbehindwindowblur.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void DSGBlendNode::render(const QSGRenderNode::RenderState *state)
{
// m_item may become invalid when the referred blur behind item get destroyed by a Loader.
// Give up rendering in this case.
if (!m_item)
if (!m_item || !m_item->window())
return;

if (m_isRestore)
Expand Down

0 comments on commit 092a361

Please sign in to comment.