mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-03 19:01:31 +00:00
Handle b key in graph, doing the same as in visual ##graph
This commit is contained in:
parent
5a0f859110
commit
a9733fe978
@ -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
|
||||
};
|
||||
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user