diff options
author | Francois Pons <fpons@mandriva.com> | 2001-08-29 09:25:47 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-08-29 09:25:47 +0000 |
commit | 385407aa94e85491928a23787deff337ba2167a0 (patch) | |
tree | b59548b52c35e23f03f0981818e581a70d693779 /perl-install/Xconfigurator.pm | |
parent | 4d4d8537864fab3b0ec6cf2290c0e4b96433f60c (diff) | |
download | drakx-385407aa94e85491928a23787deff337ba2167a0.tar drakx-385407aa94e85491928a23787deff337ba2167a0.tar.gz drakx-385407aa94e85491928a23787deff337ba2167a0.tar.bz2 drakx-385407aa94e85491928a23787deff337ba2167a0.tar.xz drakx-385407aa94e85491928a23787deff337ba2167a0.zip |
make sure Port entry for wacom is placed first.
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index e28a91e31..d227bd458 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -974,22 +974,22 @@ sub write_XF86Config { print F $dev =~ /input\/event/ ? qq( Section "XInput" SubSection "WacomStylus" - DeviceName "Stylus$_" Port "$dev" + DeviceName "Stylus$_" USB AlwaysCore Mode Absolute EndSubSection SubSection "WacomCursor" - DeviceName "Cursor$_" Port "$dev" + DeviceName "Cursor$_" USB AlwaysCore Mode Relative EndSubSection SubSection "WacomEraser" - DeviceName "Eraser$_" Port "$dev" + DeviceName "Eraser$_" USB AlwaysCore Mode Absolute @@ -999,20 +999,20 @@ EndSection ) : qq( Section "XInput" SubSection "WacomStylus" - DeviceName "Stylus$_" Port "$dev" + DeviceName "Stylus$_" AlwaysCore Mode Absolute EndSubSection SubSection "WacomCursor" - DeviceName "Sursor$_" Port "$dev" + DeviceName "Sursor$_" AlwaysCore Mode Relative EndSubSection SubSection "WacomEraser" - DeviceName "Eraser$_" Port "$dev" + DeviceName "Eraser$_" AlwaysCore Mode Absolute EndSubSection |