X-Git-Url: https://git.lttng.org/?p=lttngtop.git;a=blobdiff_plain;f=src%2Fcursesdisplay.c;h=304419d83e83a369f720032ab7f2b7c9fba54e95;hp=82bb81097f758a80568fb615e68ccf9cd67e92ae;hb=8c05e516f6a15a48e16797311e331ff9df5ff18c;hpb=32647247b1922e0aee8ffed0272d356486ee103a diff --git a/src/cursesdisplay.c b/src/cursesdisplay.c index 82bb810..304419d 100644 --- a/src/cursesdisplay.c +++ b/src/cursesdisplay.c @@ -1195,6 +1195,7 @@ void *handle_keyboard(void *p) while((ch = getch())) { switch(ch) { /* Move the cursor and scroll */ + case 'j': case KEY_DOWN: if (pref_panel_visible) { pref_line_selected++; @@ -1214,6 +1215,7 @@ void *handle_keyboard(void *p) break; case KEY_NPAGE: break; + case 'k': case KEY_UP: if (pref_panel_visible) { if (pref_line_selected > 0)