diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-04-19 12:21:51 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-04-19 12:21:51 +0000 |
commit | 8f1d0153bac6493b6c5de63b940bb6219d9087ab (patch) | |
tree | 4e6ce9bfb3ca7536df0d778d64668e1ae29e7c74 | |
parent | 20eab30068df4023902bd94efd93fb1b092f5f93 (diff) | |
download | drakx-8f1d0153bac6493b6c5de63b940bb6219d9087ab.tar drakx-8f1d0153bac6493b6c5de63b940bb6219d9087ab.tar.gz drakx-8f1d0153bac6493b6c5de63b940bb6219d9087ab.tar.bz2 drakx-8f1d0153bac6493b6c5de63b940bb6219d9087ab.tar.xz drakx-8f1d0153bac6493b6c5de63b940bb6219d9087ab.zip |
fix me sucks
-rw-r--r-- | perl-install/mouse.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm index 4766db9a1..20d23f58f 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -297,8 +297,8 @@ sub detect { if (my ($synaptics_touchpad) = detect_devices::getSynapticsTouchpads()) { $univ_mouse->{auxmouse} = { name => N_("Synaptics Touchpad"), - Device => 'input/mice', - Protocal => 'auto-dev', + device => 'input/mice', + XMOUSETYPE => 'auto-dev', ALPS => $synaptics_touchpad->{description} =~ /ALPS/, }; } @@ -391,6 +391,8 @@ sub set_xfree_conf { } $synaptics and $xfree_conf->set_synaptics(map { { + Device => "/dev/$_->{device}", + Protocol => $_->{XMOUSETYPE}, Primary => 0, ALPS => $_->{ALPS}, } } @$synaptics); |