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
eecb40ec
Commit
eecb40ec
authored
Oct 31, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 31, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide the caret only on the first WM_KEYDOWN.
parent
0f5231d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
scroll.c
controls/scroll.c
+3
-1
No files found.
controls/scroll.c
View file @
eecb40ec
...
@@ -1159,7 +1159,9 @@ LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
...
@@ -1159,7 +1159,9 @@ LRESULT WINAPI ScrollBarWndProc( HWND hwnd, UINT message, WPARAM wParam,
/* if key event is received, the scrollbar has the focus*/
/* if key event is received, the scrollbar has the focus*/
case
WM_KEYDOWN
:
case
WM_KEYDOWN
:
HideCaret
(
hwnd
);
/*hide caret to prevent flicker*/
/* hide caret on first KEYDOWN to prevent flicker */
if
((
lParam
&
0x40000000
)
==
0
)
HideCaret
(
hwnd
);
SCROLL_HandleKbdEvent
(
hwnd
,
wParam
);
SCROLL_HandleKbdEvent
(
hwnd
,
wParam
);
break
;
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