From f631d13ce18f30e10bba0ea1914c40ccf8373c91 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 21 Apr 2003 19:01:37 +0000 Subject: '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) --- perl-install/keyboard.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') 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 => '' }; } -- cgit v1.2.1