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
49c7aff2
Commit
49c7aff2
authored
Sep 17, 2001
by
Bobby Bingham
Committed by
Alexandre Julliard
Sep 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
When you hold the left mouse button inside the scrollbar, then move
the mouse off so it stops scrolling, and return the mouse, it should continue scrolling.
parent
1a8b3399
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
scroll.c
controls/scroll.c
+2
-2
No files found.
controls/scroll.c
View file @
49c7aff2
...
@@ -994,11 +994,11 @@ void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, UINT msg, POINT pt)
...
@@ -994,11 +994,11 @@ void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, UINT msg, POINT pt)
{
{
SendMessageA
(
hwndOwner
,
vertical
?
WM_VSCROLL
:
WM_HSCROLL
,
SendMessageA
(
hwndOwner
,
vertical
?
WM_VSCROLL
:
WM_HSCROLL
,
SB_PAGEUP
,
hwndCtl
);
SB_PAGEUP
,
hwndCtl
);
}
SetSystemTimer
(
hwnd
,
SCROLL_TIMER
,
(
msg
==
WM_LBUTTONDOWN
)
?
SetSystemTimer
(
hwnd
,
SCROLL_TIMER
,
(
msg
==
WM_LBUTTONDOWN
)
?
SCROLL_FIRST_DELAY
:
SCROLL_REPEAT_DELAY
,
SCROLL_FIRST_DELAY
:
SCROLL_REPEAT_DELAY
,
(
TIMERPROC
)
0
);
(
TIMERPROC
)
0
);
}
}
}
else
KillSystemTimer
(
hwnd
,
SCROLL_TIMER
);
else
KillSystemTimer
(
hwnd
,
SCROLL_TIMER
);
break
;
break
;
...
@@ -1060,11 +1060,11 @@ void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, UINT msg, POINT pt)
...
@@ -1060,11 +1060,11 @@ void SCROLL_HandleScrollEvent( HWND hwnd, INT nBar, UINT msg, POINT pt)
{
{
SendMessageA
(
hwndOwner
,
vertical
?
WM_VSCROLL
:
WM_HSCROLL
,
SendMessageA
(
hwndOwner
,
vertical
?
WM_VSCROLL
:
WM_HSCROLL
,
SB_PAGEDOWN
,
hwndCtl
);
SB_PAGEDOWN
,
hwndCtl
);
}
SetSystemTimer
(
hwnd
,
SCROLL_TIMER
,
(
msg
==
WM_LBUTTONDOWN
)
?
SetSystemTimer
(
hwnd
,
SCROLL_TIMER
,
(
msg
==
WM_LBUTTONDOWN
)
?
SCROLL_FIRST_DELAY
:
SCROLL_REPEAT_DELAY
,
SCROLL_FIRST_DELAY
:
SCROLL_REPEAT_DELAY
,
(
TIMERPROC
)
0
);
(
TIMERPROC
)
0
);
}
}
}
else
KillSystemTimer
(
hwnd
,
SCROLL_TIMER
);
else
KillSystemTimer
(
hwnd
,
SCROLL_TIMER
);
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