From d59acb38a525bf547a91de10d17c5ada2a4c95fe Mon Sep 17 00:00:00 2001 From: ellson Date: Tue, 18 Oct 2005 21:06:11 +0000 Subject: [PATCH] add support for style=invisible (cv style=invis) to agree with documentation --- lib/gvc/gvrender.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1