As long as I have been using linux , I've been able to emulate a 3 button mouse by clicking the left and right button at the same time. I just started running Fedora 9 preview this week and emulating the third button doesn't work.
I really miss it. Using the third button to paste text is very handy, but I especially miss in in firefox where clicking on a link with the third button opens the link in a new tab.
My xorg.conf did not have an entry for a mouse so I added the following:
Code:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
grep -i mouse /var/log/Xorg.0.log yeilds the following:
Code:
(==) |-->Input Device "Configured Mouse"
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
(==) NV(0): Silken mouse enabled
(**) Configured Mouse: Device: "/dev/input/mice"
(**) Configured Mouse: Protocol: "ImPS/2"
(**) Configured Mouse: always reports core events
(**) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
(**) Configured Mouse: ZAxisMapping: buttons 4 and 5
(**) Configured Mouse: Buttons: 9
(**) Configured Mouse: Sensitivity: 1
(II) evaluating device (Configured Mouse)
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) Configured Mouse: ps2EnableDataReporting: succeeded
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event0"
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Found mouse buttons
(II) Macintosh mouse button emulation: Configuring as mouse
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Dell Dell USB Optical Mouse: always reports core events
(**) Dell Dell USB Optical Mouse: Device: "/dev/input/event2"
(II) Dell Dell USB Optical Mouse: Found x and y relative axes
(II) Dell Dell USB Optical Mouse: Found mouse buttons
(II) Dell Dell USB Optical Mouse: Configuring as mouse
(II) XINPUT: Adding extended input device "Dell Dell USB Optical Mouse" (type: MOUSE)
So, it seems to me that it thinks it's emulating the third button, but it's not.
Any help?