wlsurface: fix small detection

This commit is contained in:
Vaxry 2023-11-04 17:39:56 +00:00
parent 32b3d2b456
commit a3e20d2d5f

View File

@ -31,7 +31,7 @@ bool CWLSurface::small() const {
if (!m_pOwner || !exists())
return false;
return std::abs(m_pOwner->m_vReportedSize.x - m_pWLRSurface->current.buffer_width) > 1 || std::abs(m_pOwner->m_vReportedSize.y - m_pWLRSurface->current.buffer_height) > 1;
return m_pOwner->m_vReportedSize.x > m_pWLRSurface->current.buffer_width + 1 || m_pOwner->m_vReportedSize.y > m_pWLRSurface->current.buffer_height + 1;
}
Vector2D CWLSurface::correctSmallVec() const {