Skip to content

Commit ec8b884

Browse files
committedAug 9, 2013
Merge pull request phacility#23 from oliworx/patch-1
call graph: changed color of arrows/edges to grey for readability
2 parents 8ef8ff6 + e0f7b6a commit ec8b884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎xhprof_lib/utils/callgraph_utils.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ function xhprof_generate_dot_script($raw_data, $threshold, $source, $page,
378378

379379
$result .= "N" . $sym_table[$parent]["id"] . " -> N"
380380
. $sym_table[$child]["id"];
381-
$result .= "[arrowsize=$arrow_size, style=\"setlinewidth($linewidth)\","
381+
$result .= "[arrowsize=$arrow_size, color=grey, style=\"setlinewidth($linewidth)\","
382382
." label=\""
383383
.$label."\", headlabel=\"".$headlabel
384384
."\", taillabel=\"".$taillabel."\" ]";

0 commit comments

Comments
 (0)
Please sign in to comment.