Blame SOURCES/0039-Client-Fix-opaque-region-setter.patch

165ad0
From 9930ed9942d2d26211195571673bea35261ad26b Mon Sep 17 00:00:00 2001
165ad0
From: Vlad Zahorodnii <vlad.zahorodnii@kde.org>
165ad0
Date: Sat, 19 Feb 2022 17:01:04 +0200
165ad0
Subject: [PATCH 39/40] Client: Fix opaque region setter
165ad0
165ad0
The rect is in the global coordinate system, while the opaque region
165ad0
must be in the surface local coordinate system.
165ad0
165ad0
Change-Id: I75042b4d779dfd4dfe610aad1f0387879f11b048
165ad0
Reviewed-by: Aleix Pol Gonzalez <aleixpol@kde.org>
165ad0
(cherry picked from commit f9425f573b18c0b66fd9ad9c2805e8b8b9a3ec77)
165ad0
---
165ad0
 src/client/qwaylandwindow.cpp | 2 +-
165ad0
 1 file changed, 1 insertion(+), 1 deletion(-)
165ad0
165ad0
diff --git a/src/client/qwaylandwindow.cpp b/src/client/qwaylandwindow.cpp
165ad0
index 949374b1..fee2ecdd 100644
165ad0
--- a/src/client/qwaylandwindow.cpp
165ad0
+++ b/src/client/qwaylandwindow.cpp
165ad0
@@ -372,7 +372,7 @@ void QWaylandWindow::setGeometry(const QRect &rect)
165ad0
         mShellSurface->setWindowGeometry(windowContentGeometry());
165ad0
 
165ad0
     if (isOpaque() && mMask.isEmpty())
165ad0
-        setOpaqueArea(rect);
165ad0
+        setOpaqueArea(QRect(QPoint(0, 0), rect.size()));
165ad0
 }
165ad0
 
165ad0
 void QWaylandWindow::resizeFromApplyConfigure(const QSize &sizeWithMargins, const QPoint &offset)
165ad0
-- 
165ad0
2.35.1
165ad0