From 3e6ba58c875055037e45f651bbcf866d2d47d82f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Mon, 22 Jul 2024 12:55:44 +0200 Subject: [PATCH 3/3] Revert "x11/window: Use correct bounding rect to determine NULL input region" This reverts commit 6bd920b355d12395dbf00b99374fc1f23783caaf. --- src/x11/window-x11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x11/window-x11.c b/src/x11/window-x11.c index b358b64bf2..16dc57eec2 100644 --- a/src/x11/window-x11.c +++ b/src/x11/window-x11.c @@ -2473,8 +2473,8 @@ meta_window_x11_update_input_region (MetaWindow *window) else if (n_rects == 1 && (rects[0].x == 0 && rects[0].y == 0 && - rects[0].width == window->buffer_rect.width && - rects[0].height == window->buffer_rect.height)) + rects[0].width == priv->client_rect.width && + rects[0].height == priv->client_rect.height)) { /* This is the bounding region case. Keep the * region as NULL. */ -- 2.44.0.501.g19981daefd.dirty