El desplazamiento hacia arriba no funciona en algunas aplicaciones como Firefox, Zotero y cuando navego por la sección "abrir carpeta/archivo" en Atom/VS Code. En otros entornos (Konsole, Dolphine, navegadores basados en Chromium, etc.) funciona perfectamente. ¿Algúna idea de cómo arreglar esto?
Este problema ha existido desde que actualicé 18.04 LTS a 19.04.
Mi configuración actual:
- SO:
Ubuntu 20.04.1 LTS x86_64
- Ratón:
Logitech Gaming Mouse G600
(El mismo problema ocurre cuando uso otros ratones, así que asumo que este no es el problema.
Esto es lo que encontré hasta ahora:
- xev
- El "evento ButtonRelease" y el "evento ButtonPress" no aparecen cuando me desplazo hacia arriba.
- Diferencias en modo (NotifyGrab vs. NotifyUngrab) y detalle (NotifyVirtual vs. NotifyInferior)
desplazarse hacia arriba
LeaveNotify event, serial 40, synthetic NO, window 0xd800001,
root 0x6c9, subw 0xd800002, time 11818211, (27,58), root:(2935,585),
mode NotifyGrab, detail NotifyVirtual, same_screen YES,
focus YES, state 18432
EnterNotify event, serial 40, synthetic NO, window 0xd800001,
root 0x6c9, subw 0xd800002, time 11818211, (27,58), root:(2935,585),
mode NotifyUngrab, detail NotifyVirtual, same_screen YES,
focus YES, state 16384
desplazarse hacia abajo
ButtonRelease event, serial 40, synthetic NO, window 0xd800001,
root 0x6c9, subw 0xd800002, time 11885441, (42,35), root:(4344,59),
state 0x1000, button 5, same_screen YES
LeaveNotify event, serial 40, synthetic NO, window 0xd800001,
root 0x6c9, subw 0x0, time 11885441, (42,35), root:(4344,59),
mode NotifyUngrab, detail NotifyInferior, same_screen YES,
focus YES, state 0
ButtonPress event, serial 40, synthetic NO, window 0xd800001,
root 0x6c9, subw 0xd800002, time 11885529, (42,35), root:(4344,59),
state 0x0, button 5, same_screen YES
EnterNotify event, serial 40, synthetic NO, window 0xd800001,
root 0x6c9, subw 0x0, time 11885529, (42,35), root:(4344,59),
mode NotifyGrab, detail NotifyInferior, same_screen YES,
focus YES, state 4096
- xinput
- Puede ver que el botón 4 (es decir, desplazarse hacia arriba) no está desactivado.
$ xinput get-button-map 10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Respuesta1
Resultó que esto se debía a las siguientes líneas en ~/.xbindkeysrc
.
"xte 'keydown Control_L' 'key t' 'keyup Control_L'"
b:4
El problema se resuelve después de comentarlos.