From bb977c00ca74820fabdc4aef63d10838b0cd97be Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 15 Aug 2014 08:15:05 -0400 Subject: [PATCH] window: Don't mark the event as handled for odd event combinations This is an accidental regression from 7a109a1. If we mark the event as handled, then we *need* to set grab_op, or do some other sort of behavior, since we have a grab. --- src/core/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/window.c b/src/core/window.c index 129a56c5c..43cc71e90 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -8022,7 +8022,7 @@ meta_window_handle_ungrabbed_event (MetaWindow *window, return TRUE; } - return TRUE; + return FALSE; } void