From b9f5185c9036d3cfe9a4d424b8128d9c9bff2634 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Wed, 27 Jul 2011 00:31:20 +0200 Subject: [PATCH] ui: enable multidevice on frame windows This is so different pointers may have different cursors on them. --- src/ui/ui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ui/ui.c b/src/ui/ui.c index eb6e31862..91de3183c 100644 --- a/src/ui/ui.c +++ b/src/ui/ui.c @@ -407,7 +407,8 @@ meta_ui_create_frame_window (MetaUI *ui, &attrs, attributes_mask); gdk_window_resize (window, width, height); - + gdk_window_set_support_multidevice (window, TRUE); + meta_frames_manage_window (ui->frames, GDK_WINDOW_XID (window), window); return GDK_WINDOW_XID (window);