From 86e9191d34570535e59f0fd73c39a1697cceac40 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Wed, 2 Jan 2002 17:42:14 +0000 Subject: [PATCH] add a server grab here since we were failing to have one when calling the 2001-12-21 Havoc Pennington * src/frame.c (meta_window_ensure_frame): add a server grab here since we were failing to have one when calling the function --- ChangeLog | 5 +++++ src/frame.c | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d2d435139..99ab90d8b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-12-21 Havoc Pennington + + * src/frame.c (meta_window_ensure_frame): add a server grab + here since we were failing to have one when calling the function + 2001-12-27 Duarte Loreto * configure.in: Added portuguese to ALL_LINGUAS diff --git a/src/frame.c b/src/frame.c index 0599c84a7..41a78b8fc 100644 --- a/src/frame.c +++ b/src/frame.c @@ -36,11 +36,12 @@ meta_window_ensure_frame (MetaWindow *window) { MetaFrame *frame; XSetWindowAttributes attrs; - - g_return_if_fail (window->display->server_grab_count > 0); if (window->frame) return; + + /* See comment below for why this is required. */ + meta_display_grab (window->display); frame = g_new (MetaFrame, 1); @@ -127,6 +128,8 @@ meta_window_ensure_frame (MetaWindow *window) /* Move keybindings to frame instead of window */ meta_window_grab_keys (window); + + meta_display_ungrab (window->display); } void