From: ellson Date: Tue, 29 Apr 2008 17:26:19 +0000 (+0000) Subject: fix #1343 X-Git-Tag: LAST_LIBGRAPH~32^2~4166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c54a3a746b0ddfeb18c099c4e4e80e7b2243c618;p=graphviz fix #1343 --- diff --git a/tclpkg/tcldot/tcldot.c b/tclpkg/tcldot/tcldot.c index 9aee71b14..562ef4897 100644 --- a/tclpkg/tcldot/tcldot.c +++ b/tclpkg/tcldot/tcldot.c @@ -574,7 +574,7 @@ static void tcldot_layout(GVC_t *gvc, Agraph_t * g, char *engine) rc = gvlayout_select(gvc, "neato"); } else { - rc = gvlayout_select(gvc, engine); + rc = gvlayout_select(gvc, tolower(engine)); } if (rc == NO_SUPPORT) rc = gvlayout_select(gvc, "dot");