qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] ui/cocoa.m: Fix console selection keys


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH] ui/cocoa.m: Fix console selection keys
Date: Thu, 2 Nov 2017 12:42:55 +0000

On 5 October 2017 at 20:04, John Arbuckle <address@hidden> wrote:
> Fix console selection keys so that the right console is selected.
>
> Signed-off-by: John Arbuckle <address@hidden>
> ---
>  ui/cocoa.m | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/ui/cocoa.m b/ui/cocoa.m
> index 93e56d0518..2794f60b27 100644
> --- a/ui/cocoa.m
> +++ b/ui/cocoa.m
> @@ -631,7 +631,7 @@ - (void) handleEvent:(NSEvent *)event
>
>                      // enable graphic console
>                      case Q_KEY_CODE_1 ... Q_KEY_CODE_9: // '1' to '9' keys
> -                        console_select(keycode - 11);
> +                        console_select(keycode - Q_KEY_CODE_1);
>                          break;
>                  }

Applied to master, thanks.

-- PMM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]