Skip to content

Commit

Permalink
Fixes radareorg#14267: Does not print the function name for agft (rad…
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakchethan authored and XVilka committed Aug 17, 2019
1 parent 84a326c commit 2e0d0d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libr/core/agraph.c
Original file line number Diff line number Diff line change
Expand Up @@ -3456,7 +3456,9 @@ static int agraph_print(RAGraph *g, int is_interactive, RCore *core, RAnalFuncti
}
/* print the graph title */
(void) G (-g->can->sx, -g->can->sy);
W (g->title);
if (!g->is_tiny) {
W (g->title);
}
if (is_interactive && g->title) {
int title_len = strlen (g->title);
r_cons_canvas_fill (g->can, -g->can->sx + title_len, -g->can->sy,
Expand Down

0 comments on commit 2e0d0d1

Please sign in to comment.