Skip to content

Commit

Permalink
A works in the zoom mode ##panels (radareorg#14770)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vane11ope authored and radare committed Aug 7, 2019
1 parent 56526f3 commit 9ce44c7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion libr/core/panels.c
Original file line number Diff line number Diff line change
Expand Up @@ -1572,6 +1572,7 @@ bool __handle_zoom_mode(RCore *core, const int key) {
case ';':
case ' ':
case '"':
case 'A':
case 'b':
case 'd':
case 'n':
Expand Down Expand Up @@ -6605,7 +6606,11 @@ void __panels_process(RCore *core, RPanels *panels) {
panels->autoUpdate = __show_status_yesno (core, 'y', "Auto update On? (Y/n)");
break;
case 'A':
r_core_visual_asm (core, core->offset);
{
const int ocur = core->print->cur_enabled;
r_core_visual_asm (core, core->offset);
core->print->cur_enabled = ocur;
}
break;
case 'd':
r_core_visual_define (core, "", 0);
Expand Down

0 comments on commit 9ce44c7

Please sign in to comment.