From 10a335631e71f5bdbd8f311a3aaeeef89debae11 Mon Sep 17 00:00:00 2001 From: Shockingly Good Date: Sun, 30 Mar 2025 20:29:39 +0200 Subject: [PATCH] solitary: Fix the non-working tearing #9429 (#9772) Fixes the non-working tearing by removing the incorrect opaqueness check for the windows. Fixes #9429 --- src/desktop/Window.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/desktop/Window.cpp b/src/desktop/Window.cpp index 2cd8b438..c26e0d9f 100644 --- a/src/desktop/Window.cpp +++ b/src/desktop/Window.cpp @@ -1148,9 +1148,6 @@ bool CWindow::opaque() { if (m_fAlpha->value() != 1.f || m_fActiveInactiveAlpha->value() != 1.f) return false; - if (m_vRealSize->goal().floor() != m_vReportedSize) - return false; - const auto PWORKSPACE = m_pWorkspace; if (m_pWLSurface->small() && !m_pWLSurface->m_bFillIgnoreSmall)