Skip to content

Commit

Permalink
Remove unecessary graphviz settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Nov 18, 2024
1 parent e5f3788 commit eb0fc1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tools/AGSHtml.m
Original file line number Diff line number Diff line change
Expand Up @@ -2740,7 +2740,7 @@ - (void) outputUnit: (GSXMLNode*)node to: (NSMutableString*)buf
[dot appendFormat: @"digraph class_%@ {\n", cNam];
[dot appendString: @" rankdir = \"TB\";\n"];
[dot appendString: @" {\n"];
[dot appendString: @" node [margin=0 fontcolor=blue"
[dot appendString: @" node [margin=0 "
@" fontsize=24 width=0.5 shape=rectangle style=filled]\n"];
if (sNam)
{
Expand All @@ -2750,13 +2750,13 @@ - (void) outputUnit: (GSXMLNode*)node to: (NSMutableString*)buf
[dot appendFormat: @" URL=\"%@\"", url];
}
[dot appendString: @"]\n"];
[dot appendFormat: @" %@ [class=figure_class fontcolor=\"green\"]\n",
[dot appendFormat: @" %@ [class=figure_class]\n",
cNam];
}
else
{
sNam = cNam; // This is a root class ...
[dot appendFormat: @" %@ [class=figure_root fontcolor=\"green\"]\n",
[dot appendFormat: @" %@ [class=figure_root]\n",
cNam];
}
if (protocols)
Expand Down

0 comments on commit eb0fc1a

Please sign in to comment.