Skip to content

Commit

Permalink
Merge pull request phacility#23 from oliworx/patch-1
Browse files Browse the repository at this point in the history
call graph: changed color of arrows/edges to grey for readability
  • Loading branch information
scottmac committed Aug 9, 2013
2 parents 8ef8ff6 + e0f7b6a commit ec8b884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xhprof_lib/utils/callgraph_utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ function xhprof_generate_dot_script($raw_data, $threshold, $source, $page,

$result .= "N" . $sym_table[$parent]["id"] . " -> N"
. $sym_table[$child]["id"];
$result .= "[arrowsize=$arrow_size, style=\"setlinewidth($linewidth)\","
$result .= "[arrowsize=$arrow_size, color=grey, style=\"setlinewidth($linewidth)\","
." label=\""
.$label."\", headlabel=\"".$headlabel
."\", taillabel=\"".$taillabel."\" ]";
Expand Down

0 comments on commit ec8b884

Please sign in to comment.