Fix changing anchors of a shell surface

This commit is contained in:
outfoxxed 2024-02-04 04:00:34 -08:00
parent a50d30687c
commit 2ebe7b313e
Signed by: outfoxxed
GPG Key ID: 4C88A185FB89301E
1 changed files with 16 additions and 4 deletions

View File

@ -41,7 +41,20 @@ QWaylandLayerSurface::QWaylandLayerSurface(QWaylandLayerShellIntegration *shell,
});
set_anchor(m_interface->anchors());
connect(m_interface, &Window::anchorsChanged, this, [this]() {
connect(m_interface, &Window::anchorsChanged, this, [this, window]() {
QSize size = window->surfaceSize();
const Window::Anchors anchors = m_interface->anchors();
if ((anchors & Window::AnchorLeft) && (anchors & Window::AnchorRight)) {
size.setWidth(0);
}
if ((anchors & Window::AnchorTop) && (anchors & Window::AnchorBottom)) {
size.setHeight(0);
}
if (size.isValid() && size != QSize(0, 0)) {
set_size(size.width(), size.height());
}
set_size(size.width(), size.height());
set_anchor(m_interface->anchors());
});
setExclusiveZone(m_interface->exclusionZone());
@ -67,9 +80,8 @@ QWaylandLayerSurface::QWaylandLayerSurface(QWaylandLayerShellIntegration *shell,
if ((anchors & Window::AnchorTop) && (anchors & Window::AnchorBottom)) {
size.setHeight(0);
}
if (size.isValid() && size != QSize(0, 0)) {
set_size(size.width(), size.height());
}
set_size(size.width(), size.height());
}
QWaylandLayerSurface::~QWaylandLayerSurface()