From: ellson Date: Tue, 18 Oct 2005 21:06:11 +0000 (+0000) Subject: add support for style=invisible (cv style=invis) to agree with documentation X-Git-Tag: LAST_LIBGRAPH~32^2~7097 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d59acb38a525bf547a91de10d17c5ada2a4c95fe;p=graphviz add support for style=invisible (cv style=invis) to agree with documentation --- diff --git a/lib/gvc/gvrender.c b/lib/gvc/gvrender.c index 1c9473128..87a43fd23 100644 --- a/lib/gvc/gvrender.c +++ b/lib/gvc/gvrender.c @@ -745,7 +745,7 @@ void gvrender_set_style(GVJ_t * job, char **s) style->pen = PEN_DASHED; else if (streq(line, "dotted")) style->pen = PEN_DOTTED; - else if (streq(line, "invis")) + else if (streq(line, "invis") || streq(line, "invisible")) style->pen = PEN_NONE; else if (streq(line, "bold")) style->penwidth = PENWIDTH_BOLD;