diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/frame.c | 7 |
2 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-12-21 Havoc Pennington <hp@redhat.com> + + * 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 <happyguy_pt@hotmail.com> * configure.in: Added portuguese to ALL_LINGUAS diff --git a/src/frame.c b/src/frame.c index 0599c84..41a78b8 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 |