Message ID | 20171005190449.15591-1-programmingkidx@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
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 --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; }
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(-)