diff options
author | Francois Pons <fpons@mandriva.com> | 2003-08-20 18:54:52 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-08-20 18:54:52 +0000 |
commit | 345934556ee8a54211a46ebb9b1b98ec5766733f (patch) | |
tree | b0bccfd21e0cac0983c67a6e472655ba4d528047 | |
parent | 5342cb105b215db10fe1c888a63d295208f62377 (diff) | |
download | drakx-345934556ee8a54211a46ebb9b1b98ec5766733f.tar drakx-345934556ee8a54211a46ebb9b1b98ec5766733f.tar.gz drakx-345934556ee8a54211a46ebb9b1b98ec5766733f.tar.bz2 drakx-345934556ee8a54211a46ebb9b1b98ec5766733f.tar.xz drakx-345934556ee8a54211a46ebb9b1b98ec5766733f.zip |
fix bug 3976.
-rw-r--r-- | perl-install/Xconfig/parse.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/Xconfig/parse.pm b/perl-install/Xconfig/parse.pm index 6de7d8959..36aad26f3 100644 --- a/perl-install/Xconfig/parse.pm +++ b/perl-install/Xconfig/parse.pm @@ -128,14 +128,14 @@ sub raw_to_string { #- refine the data structure for easier use #-############################################################################### my %kind_names = ( - Pointer => [ qw(Protocol Device Emulate3Buttons Emulate3Timeout) ], - Mouse => [ qw(DeviceName Protocol Device AlwaysCore Emulate3Buttons Emulate3Timeout) ], # Subsection in XInput + Pointer => [ qw(Protocol Device Emulate3Buttons Emulate3Timeout EmulateWheel EmulateWheelButton) ], + Mouse => [ qw(DeviceName Protocol Device AlwaysCore Emulate3Buttons Emulate3Timeout EmulateWheel EmulateWheelButton) ], # Subsection in XInput Keyboard => [ qw(Protocol Driver XkbModel XkbLayout XkbDisable) ], Monitor => [ qw(Identifier VendorName ModelName HorizSync VertRefresh) ], Device => [ qw(Identifier VendorName BoardName Chipset Driver VideoRam Screen BusID DPMS power_saver) ], Display => [ qw(Depth Modes Virtual) ], # Subsection in Device Screen => [ qw(Identifier Driver Device Monitor DefaultColorDepth) ], - InputDevice => [ qw(Identifier Driver Protocol Device Type Mode XkbModel XkbLayout XkbDisable Emulate3Buttons Emulate3Timeout) ], + InputDevice => [ qw(Identifier Driver Protocol Device Type Mode XkbModel XkbLayout XkbDisable Emulate3Buttons Emulate3Timeout EmulateWheel EmulateWheelButton) ], WacomCursor => [ qw(Port) ], #-\ WacomStylus => [ qw(Port) ], #--> Port must be first WacomEraser => [ qw(Port) ], #-/ |