From 4527404faf23938d1e24e5210443bc3b41d736bf Mon Sep 17 00:00:00 2001 From: wolfsuit Date: Fri, 25 Mar 2005 04:02:40 +0000 Subject: Set the default linewidth for new gc's to 1 not 0. Some extensions seem to rely on this. --- ChangeLog | 5 +++++ xlib/xgc.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4524d3e..0cc5c13 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-03-24 Jim Ingham + + * xlib/xgc.c (XCreateGC): Set the default linewidth to 1, not + 0. Some extensions seem to expect this. + 2005-03-15 Pat Thoyts * unix/tcl.m4: Updated for OpenBSD and regenerated the configure diff --git a/xlib/xgc.c b/xlib/xgc.c index 752df30..7f6edff 100644 --- a/xlib/xgc.c +++ b/xlib/xgc.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: xgc.c,v 1.6 2002/08/31 06:12:31 das Exp $ + * RCS: @(#) $Id: xgc.c,v 1.6.2.1 2005/03/25 04:02:41 wolfsuit Exp $ */ #include @@ -73,7 +73,7 @@ XCreateGC(display, d, mask, values) gp->plane_mask = (mask & GCPlaneMask) ?values->plane_mask :~0; gp->foreground = (mask & GCForeground) ?values->foreground :0; gp->background = (mask & GCBackground) ?values->background :0xffffff; - gp->line_width = (mask & GCLineWidth) ?values->line_width :0; + gp->line_width = (mask & GCLineWidth) ?values->line_width :1; gp->line_style = (mask & GCLineStyle) ?values->line_style :LineSolid; gp->cap_style = (mask & GCCapStyle) ?values->cap_style :0; gp->join_style = (mask & GCJoinStyle) ?values->join_style :0; -- cgit v0.12