diff options
author | Frederic Lepied <flepied@mandriva.com> | 2000-10-06 15:45:38 +0000 |
---|---|---|
committer | Frederic Lepied <flepied@mandriva.com> | 2000-10-06 15:45:38 +0000 |
commit | fb67cc2bb1c82883e8ec7da55cdedda59ee6c4e6 (patch) | |
tree | 88467bf565873cf247d240e12932c43f063bc9b7 /perl-install/Xconfigurator.pm | |
parent | ad2a91fd8d19c15813d47c064e8da37f7b614d9c (diff) | |
download | drakx-fb67cc2bb1c82883e8ec7da55cdedda59ee6c4e6.tar drakx-fb67cc2bb1c82883e8ec7da55cdedda59ee6c4e6.tar.gz drakx-fb67cc2bb1c82883e8ec7da55cdedda59ee6c4e6.tar.bz2 drakx-fb67cc2bb1c82883e8ec7da55cdedda59ee6c4e6.tar.xz drakx-fb67cc2bb1c82883e8ec7da55cdedda59ee6c4e6.zip |
added mode of wacom devices.
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index e804c160a..049bbd823 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -759,14 +759,17 @@ Section "XInput" SubSection "WacomStylus" Port "/dev/$o->{wacom}" AlwaysCore + Mode Absolute EndSubSection SubSection "WacomCursor" Port "/dev/$o->{wacom}" AlwaysCore + Mode Relative EndSubSection SubSection "WacomEraser" Port "/dev/$o->{wacom}" AlwaysCore + Mode Absolute EndSubSection EndSection @@ -778,18 +781,21 @@ Section "InputDevice" Driver "wacom" Option "Type" "stylus" Option "Device" "/dev/$o->{wacom}" + Option "Mode" "Absolute" EndSection Section "InputDevice" Identifier "eraser" Driver "wacom" Option "Type" "eraser" Option "Device" "/dev/$o->{wacom}" + Option "Mode" "Absolute" EndSection Section "InputDevice" Identifier "cursor" Driver "wacom" Option "Type" "cursor" Option "Device" "/dev/$o->{wacom}" + Option "Mode" "Relative" EndSection ) if $o->{wacom}; |