Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
51ea5cb4
Commit
51ea5cb4
authored
Dec 24, 2007
by
Jeremy White
Committed by
Alexandre Julliard
Dec 26, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintab32: Fix the W->A translation for CSR_NAME and CSR_BTNNAMES.
Has the lovely side effect of making Photoshop pressure + tilt work.
parent
f193197a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
context.c
dlls/wintab32/context.c
+2
-1
No files found.
dlls/wintab32/context.c
View file @
51ea5cb4
...
...
@@ -73,7 +73,8 @@ static BOOL is_string_field(UINT wCategory, UINT nIndex)
return
TRUE
;
if
(
is_logcontext_category
(
wCategory
)
&&
nIndex
==
CTX_NAME
)
return
TRUE
;
if
(
wCategory
>=
WTI_CURSORS
&&
wCategory
<=
WTI_CURSORS
+
9
)
if
((
wCategory
>=
WTI_CURSORS
&&
wCategory
<=
WTI_CURSORS
+
9
)
&&
(
nIndex
==
CSR_NAME
||
nIndex
==
CSR_BTNNAMES
))
return
TRUE
;
if
(
wCategory
==
WTI_DEVICES
&&
(
nIndex
==
DVC_NAME
||
nIndex
==
DVC_PNPID
))
return
TRUE
;
...
...
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