lkml.org 
[lkml]   [2011]   [Oct]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] perf top: do not exit tui on tab key with single event
Date
TUI help states for multiple event sessions the TAB/UNTAB keys are
used to switch events. For single event sessions (e.g., the default)
the tab key currently causes the tui to exit. Change that to do
nothing since there is not no second event to switch to.

Signed-off-by: David Ahern <dsahern@gmail.com>
---
tools/perf/util/ui/browsers/hists.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/tools/perf/util/ui/browsers/hists.c b/tools/perf/util/ui/browsers/hists.c
index 936e641..78ae9b8 100644
--- a/tools/perf/util/ui/browsers/hists.c
+++ b/tools/perf/util/ui/browsers/hists.c
@@ -868,6 +868,8 @@ static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
switch (key) {
case NEWT_KEY_TAB:
case NEWT_KEY_UNTAB:
+ if (nr_events == 1)
+ continue;
/*
* Exit the browser, let hists__browser_tree
* go to the next or previous
--
1.7.6.4


\
 
 \ /
  Last update: 2011-10-19 19:41    [W:0.053 / U:0.160 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site