From 48a88a33ef0252b3495e28520d1efa0d4bcc74cb 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 335617736..7dc4ed057 100644 --- a/src/ui/ui.c +++ b/src/ui/ui.c @@ -396,7 +396,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);