mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 19:47:31 +00:00
Fix #15717 - Update scroll panel when stepping with F7
This commit is contained in:
parent
7296864177
commit
265e0d1f66
@ -7239,6 +7239,9 @@ repeat:
|
||||
(void)r_core_cmd0 (core, cmd);
|
||||
} else {
|
||||
__panel_single_step_in (core);
|
||||
if (__check_panel_type (cur, PANEL_CMD_DISASSEMBLY)) {
|
||||
__set_panel_addr (core, cur, core->offset);
|
||||
}
|
||||
__set_refresh_all (core, false, false);
|
||||
}
|
||||
break;
|
||||
@ -7248,6 +7251,9 @@ repeat:
|
||||
(void)r_core_cmd0 (core, cmd);
|
||||
} else {
|
||||
__panel_single_step_over (core);
|
||||
if (__check_panel_type (cur, PANEL_CMD_DISASSEMBLY)) {
|
||||
__set_panel_addr (core, cur, core->offset);
|
||||
}
|
||||
__set_refresh_all (core, false, false);
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user