summaryrefslogtreecommitdiffstats
path: root/xrdp/xrdp_painter.c
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2008-08-31 01:03:37 +0000
committerjsorg71 <jsorg71>2008-08-31 01:03:37 +0000
commitbc0f9e453c3ae078a1460712f3b78f6d0cdab580 (patch)
tree6ffaead559a315f0b8cfb578cd3af0e7a95ead0c /xrdp/xrdp_painter.c
parent994172c9319b6fdd31fb533fc4a458afea02ccb9 (diff)
downloadxrdp-proprietary-bc0f9e453c3ae078a1460712f3b78f6d0cdab580.tar.gz
xrdp-proprietary-bc0f9e453c3ae078a1460712f3b78f6d0cdab580.zip
use valid mixmode in line draw
Diffstat (limited to 'xrdp/xrdp_painter.c')
-rw-r--r--xrdp/xrdp_painter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xrdp/xrdp_painter.c b/xrdp/xrdp_painter.c
index ae487423..451f5305 100644
--- a/xrdp/xrdp_painter.c
+++ b/xrdp/xrdp_painter.c
@@ -685,7 +685,7 @@ xrdp_painter_line(struct xrdp_painter* self,
{
if (rect_intersect(&rect, &clip_rect, &draw_rect))
{
- libxrdp_orders_line(self->session, 0, x1, y1, x2, y2,
+ libxrdp_orders_line(self->session, 1, x1, y1, x2, y2,
rop, self->bg_color,
&self->pen, &draw_rect);
}