qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [6477] Allow usb tablet to be used with vmware-vga hwcursor.
@ 2009-01-29 23:29 Andrzej Zaborowski
  0 siblings, 0 replies; only message in thread
From: Andrzej Zaborowski @ 2009-01-29 23:29 UTC (permalink / raw)
  To: qemu-devel

Revision: 6477
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6477
Author:   balrog
Date:     2009-01-29 23:29:52 +0000 (Thu, 29 Jan 2009)

Log Message:
-----------
Allow usb tablet to be used with vmware-vga hwcursor.

Assume that in absolute mode the guest cursor always follows host cursor
and there's no need to move host cursor.  This avoids a strange feedback
loop.

Modified Paths:
--------------
    trunk/sdl.c

Modified: trunk/sdl.c
===================================================================
--- trunk/sdl.c	2009-01-29 23:19:20 UTC (rev 6476)
+++ trunk/sdl.c	2009-01-29 23:29:52 UTC (rev 6477)
@@ -278,7 +278,8 @@
 {
     if (guest_cursor) {
         SDL_SetCursor(guest_sprite);
-        SDL_WarpMouse(guest_x, guest_y);
+        if (!kbd_mouse_is_absolute() && !absolute_enabled)
+            SDL_WarpMouse(guest_x, guest_y);
     } else
         sdl_hide_cursor();
 
@@ -549,7 +550,8 @@
             sdl_show_cursor();
         if (gui_grab || kbd_mouse_is_absolute() || absolute_enabled) {
             SDL_SetCursor(guest_sprite);
-            SDL_WarpMouse(x, y);
+            if (!kbd_mouse_is_absolute() && !absolute_enabled)
+                SDL_WarpMouse(x, y);
         }
     } else if (gui_grab)
         sdl_hide_cursor();

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-01-29 23:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-29 23:29 [Qemu-devel] [6477] Allow usb tablet to be used with vmware-vga hwcursor Andrzej Zaborowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).