mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 13:49:50 +00:00
now it's way easier to move around multiple panels.
This commit is contained in:
parent
16e9a92dd2
commit
21b52ff45d
@ -1730,6 +1730,12 @@ repeat:
|
||||
// sleep (1);
|
||||
break;
|
||||
}
|
||||
const int keyNum = key - 48;
|
||||
if ('0' <= key && key <= '9' && keyNum < panels->n_panels) {
|
||||
panels->panel[panels->curnode].refresh = true;
|
||||
panels->curnode = keyNum;
|
||||
panels->panel[panels->curnode].refresh = true;
|
||||
}
|
||||
goto repeat;
|
||||
exit:
|
||||
core->print->cur = originCursor;
|
||||
|
Loading…
Reference in New Issue
Block a user