summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rmd_poll_events.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rmd_poll_events.c b/src/rmd_poll_events.c
index f429b5c..6ce6def 100644
--- a/src/rmd_poll_events.c
+++ b/src/rmd_poll_events.c
@@ -53,8 +53,8 @@ static int clip_event_area(XDamageNotifyEvent *e, XRectangle *cliprect, XRectang
#endif
if ( e->area.x <= cliprect->x &&
e->area.y <= cliprect->y &&
- e->area.width >= cliprect->width &&
- e->area.height >= cliprect->height) {
+ e->area.x + e->area.width >= cliprect->x + cliprect->width &&
+ e->area.y + e->area.height >= cliprect->y + cliprect->height) {
/* area completely covers cliprect, cliprect becomes the area */
res->x = cliprect->x;
© All Rights Reserved