diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-04-21 19:01:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-04-21 19:01:37 +0000 |
commit | f631d13ce18f30e10bba0ea1914c40ccf8373c91 (patch) | |
tree | f0bb87806b9b1c04e09f27bbc0b40ba2eeb068d1 | |
parent | 203a328d0b62d00ab7d7ded82437740f05fe6949 (diff) | |
download | drakx-f631d13ce18f30e10bba0ea1914c40ccf8373c91.tar drakx-f631d13ce18f30e10bba0ea1914c40ccf8373c91.tar.gz drakx-f631d13ce18f30e10bba0ea1914c40ccf8373c91.tar.bz2 drakx-f631d13ce18f30e10bba0ea1914c40ccf8373c91.tar.xz drakx-f631d13ce18f30e10bba0ea1914c40ccf8373c91.zip |
'Option "XkbCompat" "group_led"' is no good because
it means that effectively NO other compatibility settings
are included i.e. NONE of standard XFree86 keys work,
including Ctrl-Alt-Fx, Ctrl-Alt-KP+, Ctrl-Alt-KP- etc.
'Option "XkbCompat" "default+group_led"' is much better
(thanks Andrey Borzenkov)
-rw-r--r-- | perl-install/keyboard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/keyboard.pm b/perl-install/keyboard.pm index 6e1e2f575..3e65df61e 100644 --- a/perl-install/keyboard.pm +++ b/perl-install/keyboard.pm @@ -402,7 +402,7 @@ sub keyboard2full_xkb { XkbLayout => join(',', if_($keyboard->{GRP_TOGGLE}, 'us'), $XkbLayout), XkbModel => $XkbModel, XkbOptions => $keyboard->{GRP_TOGGLE} ? "grp:$keyboard->{GRP_TOGGLE}" : '', - XkbCompat => $keyboard->{GRP_TOGGLE} ? "group_led" : '', + XkbCompat => $keyboard->{GRP_TOGGLE} ? "default+group_led" : '', } : { XkbDisable => '' }; } |