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
4770d57a
Commit
4770d57a
authored
Nov 03, 2005
by
Michael Kaufmann
Committed by
Alexandre Julliard
Nov 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Scroll bar: Keep the caret blinking during scroll operations (only
handle WM_SYSTIMER messages that belong to the scroll bar).
parent
9c1b57c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
scroll.c
dlls/user/scroll.c
+6
-7
No files found.
dlls/user/scroll.c
View file @
4770d57a
...
...
@@ -1085,19 +1085,18 @@ void SCROLL_TrackScrollBar( HWND hwnd, INT scrollbar, POINT pt )
{
if
(
!
GetMessageW
(
&
msg
,
0
,
0
,
0
))
break
;
if
(
CallMsgFilterW
(
&
msg
,
MSGF_SCROLLBAR
))
continue
;
switch
(
msg
.
message
)
if
(
msg
.
message
==
WM_LBUTTONUP
||
msg
.
message
==
WM_MOUSEMOVE
||
(
msg
.
message
==
WM_SYSTIMER
&&
msg
.
wParam
==
SCROLL_TIMER
))
{
case
WM_LBUTTONUP
:
case
WM_MOUSEMOVE
:
case
WM_SYSTIMER
:
pt
.
x
=
(
short
)
LOWORD
(
msg
.
lParam
)
+
xoffset
;
pt
.
y
=
(
short
)
HIWORD
(
msg
.
lParam
)
+
yoffset
;
SCROLL_HandleScrollEvent
(
hwnd
,
scrollbar
,
msg
.
message
,
pt
);
break
;
default:
}
else
{
TranslateMessage
(
&
msg
);
DispatchMessageW
(
&
msg
);
break
;
}
if
(
!
IsWindow
(
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