mirror of
https://invent.kde.org/plasma/layer-shell-qt.git
synced 2025-07-17 12:34:28 -04:00
Fix build with Qt 6.7
This also fixes a hypothetical case of a layer shell with subsurfaces
and matches the call made by xdgshell after the first configure.
(cherry picked from commit 6427176da4
)
This commit is contained in:
committed by
Fushan Wen
parent
f7fee6e7f6
commit
cce9896e42
@ -96,7 +96,11 @@ void QWaylandLayerSurface::zwlr_layer_surface_v1_configure(uint32_t serial, uint
|
||||
if (!m_configured) {
|
||||
m_configured = true;
|
||||
window()->resizeFromApplyConfigure(m_pendingSize);
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 7, 0)
|
||||
window()->handleExpose(QRect(QPoint(), m_pendingSize));
|
||||
#else
|
||||
window()->sendRecursiveExposeEvent();
|
||||
#endif
|
||||
} else {
|
||||
// Later configures are resizes, so we have to queue them up for a time when we
|
||||
// are not painting to the window.
|
||||
|
Reference in New Issue
Block a user