diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2005-02-28 18:49:04 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2005-02-28 18:49:04 +0000 |
commit | 49dbf3b4a53c0bdc8c13df7026c3ccbde2a30ded (patch) | |
tree | d722798d1cb7a08a67b12d9baef831556645296f /perl-install | |
parent | 98bd08f67e91821bebbbce286edc364b4d2343d1 (diff) | |
download | drakx-49dbf3b4a53c0bdc8c13df7026c3ccbde2a30ded.tar drakx-49dbf3b4a53c0bdc8c13df7026c3ccbde2a30ded.tar.gz drakx-49dbf3b4a53c0bdc8c13df7026c3ccbde2a30ded.tar.bz2 drakx-49dbf3b4a53c0bdc8c13df7026c3ccbde2a30ded.tar.xz drakx-49dbf3b4a53c0bdc8c13df7026c3ccbde2a30ded.zip |
define 'compose:rwin' in XkbOptions when $keyboard->{GRP_TOGGLE}
is different than "rwin_toggle" and also when $keyboard->{GRP_TOGGLE}
is not defined.
Diffstat (limited to 'perl-install')
-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 ac867806e..6f47c64a6 100644 --- a/perl-install/keyboard.pm +++ b/perl-install/keyboard.pm @@ -525,9 +525,9 @@ sub keyboard2full_xkb { XkbModel => $XkbModel, XkbOptions => join(',', if_($keyboard->{GRP_TOGGLE}, - if_($keyboard->{GRP_TOGGLE} ne 'rwin_toggle', 'compose:rwin'), "grp:$keyboard->{GRP_TOGGLE}", 'grp_led:scroll'), + if_($keyboard->{GRP_TOGGLE} ne 'rwin_toggle', 'compose:rwin'), ), }; } |