Changeset 0175246 in mainline for uspace/srv/console/console.c


Ignore:
Timestamp:
2009-04-05T16:20:02Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
482c86f
Parents:
56fa418
Message:

Primitive means of switching keyboard layout at run time. Use Ctrl+Fn, 1 = QWERTY, 2 = Dvorak, 3 = Czech. Remove compile-time option.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/console/console.c

    r56fa418 r0175246  
    437437
    438438                        if ((ev.key >= KC_F1) && (ev.key < KC_F1 +
    439                             CONSOLE_COUNT)) {
     439                            CONSOLE_COUNT) && ((ev.mods & KM_CTRL) == 0)) {
    440440                                if (ev.key == KC_F12)
    441441                                        change_console(KERNEL_CONSOLE);
Note: See TracChangeset for help on using the changeset viewer.