diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2014-03-10 09:22:16 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-03-10 13:49:44 +0100 |
commit | c3aa84b68f45d915160a523b4d7b9c6f4cf2219c (patch) | |
tree | 058c123365cd4ac7201bd7063f5c5479e56414a0 /ui | |
parent | f53f3d0a00b6df39ce8dfca942608e5b6a9a4f71 (diff) | |
download | qemu-c3aa84b68f45d915160a523b4d7b9c6f4cf2219c.tar.gz qemu-c3aa84b68f45d915160a523b4d7b9c6f4cf2219c.tar.bz2 qemu-c3aa84b68f45d915160a523b4d7b9c6f4cf2219c.zip |
input: sdl: fix guest_cursor logic.
Unbreaks relative mouse mode with SDL.
Reported-by: Gabriel L. Somlo <gsomlo@gmail.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/sdl.c | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -455,13 +455,17 @@ static void sdl_send_mouse_event(int dx, int dy, int x, int y, int state) real_screen->w); qemu_input_queue_abs(dcl->con, INPUT_AXIS_Y, y, real_screen->h); - } else if (guest_cursor) { - x -= guest_x; - y -= guest_y; - guest_x += x; - guest_y += y; - qemu_input_queue_rel(dcl->con, INPUT_AXIS_X, x); - qemu_input_queue_rel(dcl->con, INPUT_AXIS_Y, y); + } else { + if (guest_cursor) { + x -= guest_x; + y -= guest_y; + guest_x += x; + guest_y += y; + dx = x; + dy = y; + } + qemu_input_queue_rel(dcl->con, INPUT_AXIS_X, dx); + qemu_input_queue_rel(dcl->con, INPUT_AXIS_Y, dy); } qemu_input_event_sync(); } |