Fix changing anchors of a shell surface
This commit is contained in:
parent
a50d30687c
commit
2ebe7b313e
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue