summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <cpwilson@src.gnome.org>2007-04-23 11:18:58 +0000
committerChris Wilson <cpwilson@src.gnome.org>2007-04-23 11:18:58 +0000
commitb293b2cfd64c5bad6751c34137367ed7aaf5b854 (patch)
tree22b9bec560368c7d57291bcea44fc01599d9e208
parentf9e23220a7a164b2f580c90c99e63baf2f3d4c44 (diff)
XftDrawSetClip(NULL) disables the clip mask XftDrawSetClipRectangles(NULL)
is a completely opaque clip mask, the exact opposite. svn path=/trunk/; revision=1876
-rw-r--r--src/vtexft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vtexft.c b/src/vtexft.c
index df760a2..c8825bd 100644
--- a/src/vtexft.c
+++ b/src/vtexft.c
@@ -534,7 +534,7 @@ _vte_xft_clip (struct _vte_draw *draw,
g_free (xrect);
} else {
if (data->has_clip_mask) {
- XftDrawSetClipRectangles (data->draw, 0, 0, NULL, 0);
+ XftDrawSetClip (data->draw, NULL);
data->has_clip_mask = FALSE;
}
}