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
f12e6232
Commit
f12e6232
authored
Jan 23, 2007
by
Matt Finnicum
Committed by
Alexandre Julliard
Jan 24, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: Use CharFromPos instead of FindPixelPos in LinkNotify so it accounts for scrolling.
parent
dbcf2e39
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
editor.c
dlls/riched20/editor.c
+7
-4
No files found.
dlls/riched20/editor.c
View file @
f12e6232
...
...
@@ -2581,15 +2581,18 @@ void ME_LinkNotify(ME_TextEditor *editor, UINT msg, WPARAM wParam, LPARAM lParam
{
int
x
,
y
;
ME_Cursor
tmpCursor
;
int
nCharOfs
;
/* The start of the clicked text. Absolute character offset */
ME_Run
*
tmpRun
;
BOOL
bNothing
;
ENLINK
info
;
x
=
(
short
)
LOWORD
(
lParam
);
y
=
(
short
)
HIWORD
(
lParam
);
ME_FindPixelPos
(
editor
,
x
,
y
,
&
tmpCursor
,
&
bNothing
);
nCharOfs
=
ME_CharFromPos
(
editor
,
x
,
y
);
ME_CursorFromCharOfs
(
editor
,
nCharOfs
,
&
tmpCursor
);
tmpRun
=
&
tmpCursor
.
pRun
->
member
.
run
;
if
((
tmpRun
->
style
->
fmt
.
dwMask
&
CFM_LINK
)
if
((
tmpRun
->
style
->
fmt
.
dwMask
&
CFM_LINK
)
&&
(
tmpRun
->
style
->
fmt
.
dwEffects
&
CFE_LINK
))
{
/* The clicked run has CFE_LINK set */
info
.
nmhdr
.
hwndFrom
=
editor
->
hWnd
;
...
...
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