diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2013-07-27 17:20:19 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2013-07-27 17:20:19 -0700 |
commit | af4dbdc75ae631b821d713917d8057b1f9c33266 (patch) | |
tree | 65cf175f7bca4b5a30358dc1ca4ba29e7b84fb6d /xorg/X11R7.6/rdp/rdpPutImage.c | |
parent | 48aa165729099cb12092023f88af8e2a3ee7702c (diff) | |
download | xrdp-proprietary-af4dbdc75ae631b821d713917d8057b1f9c33266.tar.gz xrdp-proprietary-af4dbdc75ae631b821d713917d8057b1f9c33266.zip |
X11rdp: fix for dragging text in Firefox, more logging
Diffstat (limited to 'xorg/X11R7.6/rdp/rdpPutImage.c')
-rw-r--r-- | xorg/X11R7.6/rdp/rdpPutImage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xorg/X11R7.6/rdp/rdpPutImage.c b/xorg/X11R7.6/rdp/rdpPutImage.c index 614d0a31..5da689d6 100644 --- a/xorg/X11R7.6/rdp/rdpPutImage.c +++ b/xorg/X11R7.6/rdp/rdpPutImage.c @@ -161,7 +161,7 @@ rdpPutImage(DrawablePtr pDst, GCPtr pGC, int depth, int x, int y, box.x2 = box.x1 + w; box.y2 = box.y1 + h; RegionInit(®1, &box, 0); - draw_item_add_img_region(pDirtyPriv, ®1, GXcopy, dirty_type); + draw_item_add_img_region(pDirtyPriv, ®1, GXcopy, dirty_type, 3); RegionUninit(®1); } else if (got_id) @@ -183,7 +183,7 @@ rdpPutImage(DrawablePtr pDst, GCPtr pGC, int depth, int x, int y, RegionInit(®2, NullBox, 0); RegionCopy(®2, &clip_reg); RegionIntersect(®1, ®1, ®2); - draw_item_add_img_region(pDirtyPriv, ®1, GXcopy, dirty_type); + draw_item_add_img_region(pDirtyPriv, ®1, GXcopy, dirty_type, 3); RegionUninit(®1); RegionUninit(®2); } |