aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/ui
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/ui')
-rw-r--r--tools/perf/util/ui/browsers/hists.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c
index 497b3c4076a3..c27ab35042f1 100644
--- a/tools/perf/util/ui/browsers/hists.c
+++ b/tools/perf/util/ui/browsers/hists.c
@@ -292,7 +292,8 @@ static int hist_browser__run(struct hist_browser *self, const char *title)
292{ 292{
293 int key; 293 int key;
294 int exit_keys[] = { 'a', '?', 'h', 'C', 'd', 'D', 'E', 't', 294 int exit_keys[] = { 'a', '?', 'h', 'C', 'd', 'D', 'E', 't',
295 NEWT_KEY_ENTER, NEWT_KEY_RIGHT, NEWT_KEY_LEFT, 0, }; 295 NEWT_KEY_ENTER, NEWT_KEY_RIGHT, NEWT_KEY_LEFT,
296 NEWT_KEY_TAB, NEWT_KEY_UNTAB, 0, };
296 297
297 self->b.entries = &self->hists->entries; 298 self->b.entries = &self->hists->entries;
298 self->b.nr_entries = self->hists->nr_entries; 299 self->b.nr_entries = self->hists->nr_entries;
@@ -859,6 +860,7 @@ int hists__browse(struct hists *self, const char *helpline,
859 "E Expand all callchains\n" 860 "E Expand all callchains\n"
860 "d Zoom into current DSO\n" 861 "d Zoom into current DSO\n"
861 "t Zoom into current Thread\n" 862 "t Zoom into current Thread\n"
863 "TAB/UNTAB Switch events\n"
862 "q/CTRL+C Exit browser"); 864 "q/CTRL+C Exit browser");
863 continue; 865 continue;
864 case NEWT_KEY_ENTER: 866 case NEWT_KEY_ENTER:
@@ -997,6 +999,7 @@ int hists__tui_browse_tree(struct rb_root *self, const char *help, int evidx)
997 if (nd == first) 999 if (nd == first)
998 continue; 1000 continue;
999 nd = rb_prev(nd); 1001 nd = rb_prev(nd);
1002 break;
1000 default: 1003 default:
1001 return key; 1004 return key;
1002 } 1005 }