Skip to content

Commit

Permalink
call graph: changed color of arrows/edges to grey for readability
Browse files Browse the repository at this point in the history
call graph: changed color of arrows/edges to grey for better 
readability of the labels
  • Loading branch information
oliworx committed Apr 10, 2013
1 parent 254eb24 commit e0f7b6a
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 e0f7b6a

Please sign in to comment.