| Summary: |
Keycodes for PrintScreen and SysRq |
| Product: |
xorg
|
Reporter: |
Owen Taylor <otaylor> |
| Component: |
Input/Keyboard | Assignee: |
Xorg Project Team <xorg-team> |
| Status: |
RESOLVED
FIXED
|
QA Contact: |
|
| Severity: |
normal
|
|
|
| Priority: |
high
|
CC: |
mharris
|
| Version: |
git | |
|
| Hardware: |
x86 (IA32) | |
|
| OS: |
Linux (All) | |
|
| Whiteboard: |
|
|
i915 platform:
|
|
i915 features:
|
|
| Bug Depends on: |
|
|
|
| Bug Blocks: |
351
|
|
|
| Attachments: |
|
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.
PrintScreen and SysRequest==Alt+PrintScreen should give the same keycode since they are the same physical key. This was fixed about a year ago with the following code in xf86PostKbdEvent(): if (scanCode == KEY_SysReqest) scanCode = KEY_Print; else if (scanCode == KEY_Break) scanCode = KEY_Pause; And the shippe XKB files expect this to be the case. But now the keys are reporting different keycodes again, so the above code is not getting run or not working as expected.