diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-12-14 16:35:43 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-12-14 16:35:43 +0000 |
commit | 8735090e30191359b7bea7e754017d925055a7aa (patch) | |
tree | 265350a72e739f84750b8b1d288a75b3065e4af2 /lib/Xconfig | |
parent | c588522a4714865843d46c531ab519aa656ca448 (diff) | |
download | drakx-kbd-mouse-x11-8735090e30191359b7bea7e754017d925055a7aa.tar drakx-kbd-mouse-x11-8735090e30191359b7bea7e754017d925055a7aa.tar.gz drakx-kbd-mouse-x11-8735090e30191359b7bea7e754017d925055a7aa.tar.bz2 drakx-kbd-mouse-x11-8735090e30191359b7bea7e754017d925055a7aa.tar.xz drakx-kbd-mouse-x11-8735090e30191359b7bea7e754017d925055a7aa.zip |
drop unused Primary option in set_synaptics
Diffstat (limited to 'lib/Xconfig')
-rw-r--r-- | lib/Xconfig/xfree.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Xconfig/xfree.pm b/lib/Xconfig/xfree.pm index dfa4d5a..d7abba8 100644 --- a/lib/Xconfig/xfree.pm +++ b/lib/Xconfig/xfree.pm @@ -313,7 +313,6 @@ sub set_synaptics { each_index { my $synaptics_mouse = $_; my $identifier = "SynapticsMouse" . ($::i + 1); - my $pointer_type = $synaptics_mouse->{Primary} ? "CorePointer" : "AlwaysCore"; my $h = { Identifier => { val => $identifier }, Driver => { val => "synaptics" }, @@ -347,7 +346,7 @@ sub set_synaptics { $h->{$k} = { val => $v, Option => 1 }; } $raw_X->add_Section('InputDevice', $h); - push @$layout, { val => qq("$identifier" "$pointer_type") }; + push @$layout, { val => qq("$identifier" "AlwaysCore") }; } @synaptics; } |