* [Qemu-devel] Mouse gets stuck w/ qemu-0.8.1 running Windows2000/XP
@ 2006-06-13 12:32 Agustin Barto
2006-06-13 12:54 ` Johannes Schindelin
0 siblings, 1 reply; 3+ messages in thread
From: Agustin Barto @ 2006-06-13 12:32 UTC (permalink / raw)
To: qemu-devel
I'm running WindowsXP (the problem is also present with Windows2000)
on qemu-0.8.1 over an FC5 host, and sometimes the mouse gets stuck at
some point (kinda like hitting a screen edge) and I have to "wiggle"
the mouse a bit to pass over this limit.
I didn't have this problem with qemu-0.7.x and prior versions.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] Mouse gets stuck w/ qemu-0.8.1 running Windows2000/XP
2006-06-13 12:32 [Qemu-devel] Mouse gets stuck w/ qemu-0.8.1 running Windows2000/XP Agustin Barto
@ 2006-06-13 12:54 ` Johannes Schindelin
2006-06-15 2:54 ` [Qemu-devel] " Alex
0 siblings, 1 reply; 3+ messages in thread
From: Johannes Schindelin @ 2006-06-13 12:54 UTC (permalink / raw)
To: qemu-devel
Hi,
On Tue, 13 Jun 2006, Agustin Barto wrote:
> I'm running WindowsXP (the problem is also present with Windows2000)
> on qemu-0.8.1 over an FC5 host, and sometimes the mouse gets stuck at
> some point (kinda like hitting a screen edge) and I have to "wiggle"
> the mouse a bit to pass over this limit.
>
> I didn't have this problem with qemu-0.7.x and prior versions.
Funny. It seems that there have been quite a few messages on this list,
which address exactly your problem. The latest such message was even only
a few minutes ago.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Qemu-devel] Re: Mouse gets stuck w/ qemu-0.8.1 running Windows2000/XP
2006-06-13 12:54 ` Johannes Schindelin
@ 2006-06-15 2:54 ` Alex
0 siblings, 0 replies; 3+ messages in thread
From: Alex @ 2006-06-15 2:54 UTC (permalink / raw)
To: qemu-devel
... And a workable patch was proposed many times in the past, but never
committed. I had to manually apply it every time I updated my sources from
CVS. Are there any known issues with the patch?
diff -r 39a6dd1136c6 sdl.c
--- a/sdl.c Thu May 04 04:13:13 2006 +0000
+++ b/sdl.c Thu May 04 21:30:11 2006 -0500
@@ -280,13 +280,18 @@ static void sdl_update_caption(void)
static void sdl_hide_cursor(void)
{
- SDL_SetCursor(sdl_cursor_hidden);
+ if (kbd_mouse_is_absolute()) {
+ SDL_ShowCursor(1);
+ SDL_SetCursor(sdl_cursor_hidden);
+ } else {
+ SDL_ShowCursor(0);
+ }
}
static void sdl_show_cursor(void)
{
if (!kbd_mouse_is_absolute()) {
- SDL_SetCursor(sdl_cursor_normal);
+ SDL_ShowCursor(1);
}
}
--
Alex.
"Johannes Schindelin" <Johannes.Schindelin@gmx.de> wrote in message
news:Pine.LNX.4.63.0606131454080.28618@wbgn013.biozentrum.uni-wuerzburg.de...
> Hi,
>
> On Tue, 13 Jun 2006, Agustin Barto wrote:
>
>> I'm running WindowsXP (the problem is also present with Windows2000)
>> on qemu-0.8.1 over an FC5 host, and sometimes the mouse gets stuck at
>> some point (kinda like hitting a screen edge) and I have to "wiggle"
>> the mouse a bit to pass over this limit.
>>
>> I didn't have this problem with qemu-0.7.x and prior versions.
>
> Funny. It seems that there have been quite a few messages on this list,
> which address exactly your problem. The latest such message was even only
> a few minutes ago.
>
> Ciao,
> Dscho
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-06-15 2:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-13 12:32 [Qemu-devel] Mouse gets stuck w/ qemu-0.8.1 running Windows2000/XP Agustin Barto
2006-06-13 12:54 ` Johannes Schindelin
2006-06-15 2:54 ` [Qemu-devel] " Alex
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).