diff options
Diffstat (limited to 'xc/lib/Xft/xftcolor.c')
-rw-r--r-- | xc/lib/Xft/xftcolor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xc/lib/Xft/xftcolor.c b/xc/lib/Xft/xftcolor.c index 6443e00ec..b2f80bc2f 100644 --- a/xc/lib/Xft/xftcolor.c +++ b/xc/lib/Xft/xftcolor.c @@ -1,5 +1,5 @@ /* - * $XFree86: xc/lib/Xft/xftcolor.c,v 1.1 2000/12/01 03:27:57 keithp Exp $ + * $XFree86: xc/lib/Xft/xftcolor.c,v 1.2 2001/05/16 17:20:06 keithp Exp $ * * Copyright © 2000 Keith Packard, member of The XFree86 Project, Inc. * @@ -110,7 +110,7 @@ XftColorAllocValue (Display *dpy, result->color.red = color->red; result->color.green = color->green; result->color.blue = color->blue; - result->color.alpha = 0xffff; + result->color.alpha = color->alpha; return True; } |