qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Thomas Han" <thomashan@gmail.com>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] QEMU 0.8.1
Date: Tue, 9 May 2006 16:18:24 -0700	[thread overview]
Message-ID: <170581c20605091618k18f2617ajd4ff14b7ffa353fc@mail.gmail.com> (raw)
In-Reply-To: <445AB8FE.9040003@us.ibm.com>

[-- Attachment #1: Type: text/plain, Size: 2680 bytes --]

Hi Anthony,

Sorry for the late reply.  I did try out the patch with my local build and I
haven't see that  "invisible wall" mouse problem for a few days now.

Thanks very much,
Thomas

On 5/4/06, Anthony Liguori <aliguori@us.ibm.com> wrote:
>
> Thomas Han wrote:
> > Hi,
> >
> > For what it's worth.  I have also seen this "invisible wall" problem
> > with my mouse for a few weeks off the CVS build too.
>
> Can you try out the following patch.  *grumbles about SDL's brokenness*
>
> Regards,
>
> Anthony Liguori
>
> > Since 0.8.1 came out yesterday, Instead of using CVS build, I'm now
> > running Qemu 0.8.1 + kqemu-1.3.0pre6.  My host OS is FC5 and I'm
> > running XP inside it.
> >
> > Thanks,
> > Thomas
> >
> > On 5/4/06, *Christian MICHON* < christian.michon@gmail.com
> > <mailto:christian.michon@gmail.com>> wrote:
> >
> >     qemu 0.8.0 does not show this invisible barrier issue.
> >     if this is worth anything, I use SDL 1.2.9.
> >
> >     If someone can reproduce the issue also on linux hosts,
> >     there could be a lead.
> >
> >     On 5/4/06, Christian MICHON <christian.michon@gmail.com
> >     <mailto:christian.michon@gmail.com>> wrote:
> >     > I removed manually vnc_display_init, and this is not the
> culprit...
> >     > I'll check anyway versus qemu-0.8.0...
> >     >
> >     --
> >     Christian
> >
> >
> >     _______________________________________________
> >     Qemu-devel mailing list
> >     Qemu-devel@nongnu.org <mailto:Qemu-devel@nongnu.org>
> >     http://lists.nongnu.org/mailman/listinfo/qemu-devel
> >
> >
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > Qemu-devel mailing list
> > Qemu-devel@nongnu.org
> > http://lists.nongnu.org/mailman/listinfo/qemu-devel
> >
>
>
>
> 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);
>      }
> }
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
>
>

[-- Attachment #2: Type: text/html, Size: 4400 bytes --]

  parent reply	other threads:[~2006-05-09 23:18 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-05-03 20:45 [Qemu-devel] QEMU 0.8.1 Fabrice Bellard
2006-05-03 21:00 ` Christian MICHON
2006-05-04  9:04 ` Mulyadi Santosa
2006-05-04 12:13 ` Christian MICHON
2006-05-04 12:24   ` Christian MICHON
2006-05-04 12:31     ` Christian MICHON
2006-05-04 13:14       ` WaxDragon
2006-05-04 14:51       ` Thomas Han
2006-05-05  2:31         ` Anthony Liguori
2006-05-05  6:57           ` Christian MICHON
2006-05-05  8:43             ` Natalia Portillo
2006-05-05 10:33               ` Oliver Gerlich
2006-05-05 11:33                 ` Natalia Portillo
2006-05-08 17:35               ` Jim C. Brown
2006-05-05 14:08             ` Anthony Liguori
2006-05-05 14:23               ` Christian MICHON
2006-05-05 14:28                 ` Anthony Liguori
2006-05-05 15:01                   ` Christian MICHON
2006-05-05 15:57                     ` Anthony Liguori
2006-05-08 17:40                       ` Jim C. Brown
2006-05-08 20:12                         ` Christian MICHON
2006-05-08 20:39                           ` Brad Campbell
2006-05-08 21:05                           ` Jim C. Brown
2006-05-09 23:18           ` Thomas Han [this message]
2006-05-10  9:30             ` [Qemu-devel] QEMU 0.8.1 - Invisible wall Dan Sandberg
2006-05-04 13:30   ` [Qemu-devel] QEMU 0.8.1 Chris Bagwell
2006-05-04 13:48     ` Christian MICHON
2006-05-05  1:56 ` Kazu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=170581c20605091618k18f2617ajd4ff14b7ffa353fc@mail.gmail.com \
    --to=thomashan@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).