Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
7ceff879
Commit
7ceff879
authored
Feb 01, 2019
by
Andrej Shadura
Committed by
Vitaly Lipatov
Jul 30, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Fixed rebar behaviour when there's capture and no drag
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=14750
parent
4eddbb0a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
rebar.c
dlls/comctl32/rebar.c
+9
-1
No files found.
dlls/comctl32/rebar.c
View file @
7ceff879
...
...
@@ -3111,7 +3111,15 @@ REBAR_MouseMove (REBAR_INFO *infoPtr, LPARAM lParam)
int
yPtMove
=
(
infoPtr
->
dwStyle
&
CCS_VERT
?
ptMove
.
x
:
ptMove
.
y
);
if
(
GetCapture
()
!=
infoPtr
->
hwndSelf
)
ERR
(
"We are dragging but haven't got capture?!?
\n
"
);
{
if
(
infoPtr
->
fStatus
&
BEGIN_DRAG_ISSUED
)
{
REBAR_Notify_NMREBAR
(
infoPtr
,
infoPtr
->
iGrabbedBand
,
RBN_ENDDRAG
);
infoPtr
->
fStatus
&=
~
BEGIN_DRAG_ISSUED
;
}
infoPtr
->
iGrabbedBand
=
-
1
;
return
0
;
}
band
=
REBAR_GetBand
(
infoPtr
,
infoPtr
->
iGrabbedBand
);
...
...
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