diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-08-26 11:24:38 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-08-26 11:24:38 +0000 |
commit | 5b144db234759e521ca2adab99c0d15792ecf4c3 (patch) | |
tree | d2e4f8ac18dab190a2365c96328b62a7e3a7ab43 /perl-install/Xconfig/xfree.pm | |
parent | 92f63468b5e435180f85c2cd9e8a227a072da9df (diff) | |
download | drakx-5b144db234759e521ca2adab99c0d15792ecf4c3.tar drakx-5b144db234759e521ca2adab99c0d15792ecf4c3.tar.gz drakx-5b144db234759e521ca2adab99c0d15792ecf4c3.tar.bz2 drakx-5b144db234759e521ca2adab99c0d15792ecf4c3.tar.xz drakx-5b144db234759e521ca2adab99c0d15792ecf4c3.zip |
(set_synaptics) quote decimal values so that write_XF86Config doesn't
write commas instead of dots
Diffstat (limited to 'perl-install/Xconfig/xfree.pm')
-rw-r--r-- | perl-install/Xconfig/xfree.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/Xconfig/xfree.pm b/perl-install/Xconfig/xfree.pm index 3f18b5f9e..e3e09c357 100644 --- a/perl-install/Xconfig/xfree.pm +++ b/perl-install/Xconfig/xfree.pm @@ -239,9 +239,9 @@ sub set_synaptics { MaxTapTime => { val => 180, Option => 1 }, MaxTapMove => { val => 220, Option => 1 }, VertScrollDelta => { val => 100, Option => 1 }, - MinSpeed => { val => 0.06, Option => 1 }, - MaxSpeed => { val => 0.12, Option => 1 }, - AccelFactor => { val => 0.0010, Option => 1 }, + MinSpeed => { val => '0.06', Option => 1 }, + MaxSpeed => { val => '0.12', Option => 1 }, + AccelFactor => { val => '0.0010', Option => 1 }, SHMConfig => { val => "on", Option => 1 }, }; $raw_X->add_Section('InputDevice', $h); |