From 4fd604b015d77a83a88337394ca07b66d88cea4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C3=85strand?= Date: Mon, 7 Aug 2006 11:45:06 +0000 Subject: [PATCH] Fixed a minor seamless bug in DRAW_ELLIPSE: Was copying from backingstore before updated. git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@1248 423420c4-83ab-492f-b58f-81f9feb106b5 --- xwin.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xwin.c b/xwin.c index c514d79..d84661a 100644 --- a/xwin.c +++ b/xwin.c @@ -242,8 +242,7 @@ seamless_XDrawLines(Drawable d, XPoint * points, int npoints, int xoffset, int y break; \ case 1: /* Filled */ \ XFillArc(g_display, g_wnd, g_gc, x, y, cx, cy, 0, 360*64); \ - ON_ALL_SEAMLESS_WINDOWS(XCopyArea, (g_display, g_ownbackstore ? g_backstore : g_wnd, sw->wnd, g_gc, \ - x, y, cx, cy, x-sw->xoffset, y-sw->yoffset)); \ + ON_ALL_SEAMLESS_WINDOWS(XFillArc, (g_display, sw->wnd, g_gc, x-sw->xoffset, y-sw->yoffset, cx, cy, 0, 360*64)); \ if (g_ownbackstore) \ XFillArc(g_display, g_backstore, g_gc, x, y, cx, cy, 0, 360*64); \ break; \