QWaylandXdgSurface: add suspended in debug output

Pick-to: 6.8
Change-Id: I9318d132d3863f38d7264ebe360aad95de575fc4
Reviewed-by: David Edmundson <davidedmundson@kde.org>
This commit is contained in:
Liang Qi 2024-07-30 10:39:57 +02:00
parent 37f25aeefb
commit 4bd62f740f

View File

@ -105,7 +105,9 @@ void QWaylandXdgSurface::Toplevel::applyConfigure()
if (!surfaceSize.isEmpty())
m_xdgSurface->m_window->resizeFromApplyConfigure(surfaceSize.grownBy(m_xdgSurface->m_window->windowContentMargins()));
qCDebug(lcQpaWayland) << "Applied pending xdg_toplevel configure event:" << m_applied.size << m_applied.states;
qCDebug(lcQpaWayland) << "Applied pending xdg_toplevel configure event:" << m_applied.size
<< "and" << m_applied.states
<< ", suspended " << m_applied.suspended;
}
bool QWaylandXdgSurface::Toplevel::wantsDecorations()
@ -164,7 +166,8 @@ void QWaylandXdgSurface::Toplevel::xdg_toplevel_configure(int32_t width, int32_t
}
}
qCDebug(lcQpaWayland) << "Received xdg_toplevel.configure with" << m_pending.size
<< "and" << m_pending.states;
<< "and" << m_pending.states
<< ", suspended " << m_pending.suspended;
}
void QWaylandXdgSurface::Toplevel::xdg_toplevel_close()