diff mbox series

ui/cocoa.m: Fix console selection keys

Message ID 20171005190449.15591-1-programmingkidx@gmail.com
State New
Headers show
Series ui/cocoa.m: Fix console selection keys | expand

Commit Message

Programmingkid Oct. 5, 2017, 7:04 p.m. UTC
Fix console selection keys so that the right console is selected. 

Signed-off-by: John Arbuckle <programmingkidx@gmail.com>
---
 ui/cocoa.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Maydell Nov. 2, 2017, 12:42 p.m. UTC | #1
On 5 October 2017 at 20:04, John Arbuckle <programmingkidx@gmail.com> wrote:
> Fix console selection keys so that the right console is selected.
>
> Signed-off-by: John Arbuckle <programmingkidx@gmail.com>
> ---
>  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
diff mbox series

Patch

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;
                 }