Handle b key in graph, doing the same as in visual ##graph

This commit is contained in:
pancake 2019-03-25 23:59:51 +01:00
parent 5a0f859110
commit a9733fe978
2 changed files with 3 additions and 1 deletions

View File

@ -223,7 +223,6 @@ static const char *help_msg_aea[] = {
"@R", "", "memreads",
"@W", "", "memwrites",
"NOTE:", "", "mem{reads,writes} with PIC only fetch the offset",
NULL
};

View File

@ -4158,6 +4158,9 @@ R_API int r_core_visual_graph(RCore *core, RAGraph *g, RAnalFunction *_fcn, int
get_bbupdate (g, core, fcn);
}
break;
case 'b':
r_core_visual_browse (core, "");
break;
case 'E':
{
int e = r_config_get_i (core->config, "graph.linemode");