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
f3619105
Commit
f3619105
authored
Jan 06, 2009
by
Dylan Smith
Committed by
Alexandre Julliard
Jan 06, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
richedit: Use 32-bit rather than 16-bit trackbar value for scrolling.
parent
ba01d15b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
editor.c
dlls/riched20/editor.c
+11
-1
No files found.
dlls/riched20/editor.c
View file @
f3619105
...
...
@@ -4004,8 +4004,18 @@ LRESULT ME_HandleMessage(ME_TextEditor *editor, UINT msg, WPARAM wParam,
break
;
case
SB_THUMBTRACK
:
case
SB_THUMBPOSITION
:
ME_ScrollAbs
(
editor
,
HIWORD
(
wParam
));
{
SCROLLINFO
sbi
;
sbi
.
cbSize
=
sizeof
(
sbi
);
sbi
.
fMask
=
SIF_TRACKPOS
;
/* Try to get 32-bit track position value. */
if
(
!
GetScrollInfo
(
editor
->
hWnd
,
SB_VERT
,
&
sbi
))
/* GetScrollInfo failed, settle for 16-bit value in wParam. */
sbi
.
nTrackPos
=
HIWORD
(
wParam
);
ME_ScrollAbs
(
editor
,
sbi
.
nTrackPos
);
break
;
}
}
if
(
msg
==
EM_SCROLL
)
return
0x00010000
|
(((
ME_GetYScrollPos
(
editor
)
-
origNPos
)
/
lineHeight
)
&
0xffff
);
...
...
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