diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-16 19:29:38 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-05-16 19:29:38 -0400 |
commit | a308f3a868185d4f804fe71d0400e2b058c6d9af (patch) | |
tree | 2c0ff9d6d0aba272060a453056e9c8cfe5c5dbb3 /tools/perf | |
parent | 9d192e118a094087494997ea1c8a2faf39af38c5 (diff) |
perf tui: Make <- exit menus too
In fact it is now added to the hot key list when newt_form__new is used,
allowing us to remove the explicit assignment in all its users.
The visible change is that <- will exit the menu that pops up when -> is
pressed (and Enter when callchains are not being used).
Suggested-by: Ingo Molnar <mingo@elte.hu>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/util/newt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/util/newt.c b/tools/perf/util/newt.c index 6974431d212f..59a63e4405fc 100644 --- a/tools/perf/util/newt.c +++ b/tools/perf/util/newt.c | |||
@@ -118,6 +118,7 @@ int browser__show_help(const char *format, va_list ap) | |||
118 | 118 | ||
119 | static void newt_form__set_exit_keys(newtComponent self) | 119 | static void newt_form__set_exit_keys(newtComponent self) |
120 | { | 120 | { |
121 | newtFormAddHotKey(self, NEWT_KEY_LEFT); | ||
121 | newtFormAddHotKey(self, NEWT_KEY_ESCAPE); | 122 | newtFormAddHotKey(self, NEWT_KEY_ESCAPE); |
122 | newtFormAddHotKey(self, 'Q'); | 123 | newtFormAddHotKey(self, 'Q'); |
123 | newtFormAddHotKey(self, 'q'); | 124 | newtFormAddHotKey(self, 'q'); |
@@ -323,7 +324,6 @@ static int ui_browser__run(struct ui_browser *self, const char *title, | |||
323 | newtFormAddHotKey(self->form, NEWT_KEY_PGDN); | 324 | newtFormAddHotKey(self->form, NEWT_KEY_PGDN); |
324 | newtFormAddHotKey(self->form, NEWT_KEY_HOME); | 325 | newtFormAddHotKey(self->form, NEWT_KEY_HOME); |
325 | newtFormAddHotKey(self->form, NEWT_KEY_END); | 326 | newtFormAddHotKey(self->form, NEWT_KEY_END); |
326 | newtFormAddHotKey(self->form, NEWT_KEY_LEFT); | ||
327 | 327 | ||
328 | if (ui_browser__refresh_entries(self) < 0) | 328 | if (ui_browser__refresh_entries(self) < 0) |
329 | return -1; | 329 | return -1; |
@@ -757,7 +757,6 @@ static int hist_browser__populate(struct hist_browser *self, struct hists *hists | |||
757 | newtFormAddHotKey(self->form, 'T'); | 757 | newtFormAddHotKey(self->form, 'T'); |
758 | newtFormAddHotKey(self->form, 't'); | 758 | newtFormAddHotKey(self->form, 't'); |
759 | newtFormAddHotKey(self->form, NEWT_KEY_RIGHT); | 759 | newtFormAddHotKey(self->form, NEWT_KEY_RIGHT); |
760 | newtFormAddHotKey(self->form, NEWT_KEY_LEFT); | ||
761 | newtFormAddComponents(self->form, self->tree, NULL); | 760 | newtFormAddComponents(self->form, self->tree, NULL); |
762 | self->selection = newt__symbol_tree_get_current(self->tree); | 761 | self->selection = newt__symbol_tree_get_current(self->tree); |
763 | 762 | ||