Rev 4232 | Rev 4321 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4232 | Rev 4240 | ||
---|---|---|---|
Line 434... | Line 434... | ||
434 | /* switch to another virtual console */ |
434 | /* switch to another virtual console */ |
435 | 435 | ||
436 | conn = &connections[active_console]; |
436 | conn = &connections[active_console]; |
437 | 437 | ||
438 | if ((ev.key >= KC_F1) && (ev.key < KC_F1 + |
438 | if ((ev.key >= KC_F1) && (ev.key < KC_F1 + |
439 | CONSOLE_COUNT)) { |
439 | CONSOLE_COUNT) && ((ev.mods & KM_CTRL) == 0)) { |
440 | if (ev.key == KC_F12) |
440 | if (ev.key == KC_F12) |
441 | change_console(KERNEL_CONSOLE); |
441 | change_console(KERNEL_CONSOLE); |
442 | else |
442 | else |
443 | change_console(ev.key - KC_F1); |
443 | change_console(ev.key - KC_F1); |
444 | break; |
444 | break; |