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
e874fded
Commit
e874fded
authored
Mar 11, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Discard ConfigureNotify events even if the intervening events are for other windows.
parent
df0f42fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
event.c
dlls/winex11.drv/event.c
+7
-5
No files found.
dlls/winex11.drv/event.c
View file @
e874fded
...
@@ -255,23 +255,25 @@ enum event_merge_action
...
@@ -255,23 +255,25 @@ enum event_merge_action
*/
*/
static
enum
event_merge_action
merge_events
(
XEvent
*
prev
,
XEvent
*
next
)
static
enum
event_merge_action
merge_events
(
XEvent
*
prev
,
XEvent
*
next
)
{
{
if
(
prev
->
xany
.
window
!=
next
->
xany
.
window
)
return
MERGE_HANDLE
;
switch
(
prev
->
type
)
switch
(
prev
->
type
)
{
{
case
ConfigureNotify
:
case
ConfigureNotify
:
if
(
prev
->
xany
.
window
!=
next
->
xany
.
window
)
break
;
switch
(
next
->
type
)
switch
(
next
->
type
)
{
{
case
ConfigureNotify
:
case
ConfigureNotify
:
TRACE
(
"discarding duplicate ConfigureNotify for window %lx
\n
"
,
prev
->
xany
.
window
);
if
(
prev
->
xany
.
window
==
next
->
xany
.
window
)
return
MERGE_DISCARD
;
{
TRACE
(
"discarding duplicate ConfigureNotify for window %lx
\n
"
,
prev
->
xany
.
window
);
return
MERGE_DISCARD
;
}
break
;
case
Expose
:
case
Expose
:
case
PropertyNotify
:
case
PropertyNotify
:
return
MERGE_KEEP
;
return
MERGE_KEEP
;
}
}
break
;
break
;
case
MotionNotify
:
case
MotionNotify
:
if
(
next
->
type
==
MotionNotify
)
if
(
prev
->
xany
.
window
==
next
->
xany
.
window
&&
next
->
type
==
MotionNotify
)
{
{
TRACE
(
"discarding duplicate MotionNotify for window %lx
\n
"
,
prev
->
xany
.
window
);
TRACE
(
"discarding duplicate MotionNotify for window %lx
\n
"
,
prev
->
xany
.
window
);
return
MERGE_DISCARD
;
return
MERGE_DISCARD
;
...
...
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