From: erg Date: Tue, 22 Feb 2011 02:22:15 +0000 (+0000) Subject: Fix bug in which prism values were not initialized when overlap=false, X-Git-Tag: LAST_LIBGRAPH~32^2~1010 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2722b07293b5738038fb20f3e21763886007d4f5;p=graphviz Fix bug in which prism values were not initialized when overlap=false, which now implies prism. --- diff --git a/lib/neatogen/adjust.c b/lib/neatogen/adjust.c index 955381973..7fcdfd99f 100644 --- a/lib/neatogen/adjust.c +++ b/lib/neatogen/adjust.c @@ -983,6 +983,8 @@ static adjust_data *getAdjustMode(Agraph_t* g, char *s, adjust_data* dp) dp->mode = adjustMode[1].mode; dp->print = adjustMode[1].print; } + if (dp->mode == AM_PRISM) + setPrismValues (g, "", dp); } } return dp;