Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
964687d7
Commit
964687d7
authored
Apr 26, 2008
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Apr 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Fix GetKeyNameText for Right Shift.
parent
4a2f7497
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
keyboard.c
dlls/winex11.drv/keyboard.c
+3
-3
No files found.
dlls/winex11.drv/keyboard.c
View file @
964687d7
...
...
@@ -2164,8 +2164,10 @@ INT X11DRV_GetKeyNameText(LONG lParam, LPWSTR lpBuffer, INT nSize)
/* handle "don't care" bit (0x02000000) */
if
(
!
(
lParam
&
0x02000000
))
{
switch
(
vkey
)
{
case
VK_LSHIFT
:
case
VK_RSHIFT
:
/* R-Shift is "special" - it is an extended key with separate scan code */
scanCode
|=
0x100
;
case
VK_LSHIFT
:
vkey
=
VK_SHIFT
;
break
;
case
VK_LCONTROL
:
...
...
@@ -2176,8 +2178,6 @@ INT X11DRV_GetKeyNameText(LONG lParam, LPWSTR lpBuffer, INT nSize)
case
VK_RMENU
:
vkey
=
VK_MENU
;
break
;
default:
break
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment