diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-07-26 13:08:48 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-07-27 10:24:31 -0400 |
commit | 8d8c369f3d697e31e04133ca18b516952549ee33 (patch) | |
tree | 7c00386b356a8a10009d2d66cca648853c24b42a /tools/perf | |
parent | 63160f73e7baa6618f19d7681bcab5be5c557205 (diff) |
perf ui: Show the scroll bar over the left window frame
So that we gain two columns and look more like classical (at least in
TUIs) scroll bars bars.
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/util/newt.c b/tools/perf/util/newt.c index aed21490ccdc..cdd958eb68cf 100644 --- a/tools/perf/util/newt.c +++ b/tools/perf/util/newt.c | |||
@@ -347,12 +347,12 @@ static int ui_browser__show(struct ui_browser *self, const char *title) | |||
347 | newtPopWindow(); | 347 | newtPopWindow(); |
348 | } | 348 | } |
349 | ui_browser__refresh_dimensions(self); | 349 | ui_browser__refresh_dimensions(self); |
350 | newtCenteredWindow(self->width + 2, self->height, title); | 350 | newtCenteredWindow(self->width, self->height, title); |
351 | self->form = newt_form__new(); | 351 | self->form = newt_form__new(); |
352 | if (self->form == NULL) | 352 | if (self->form == NULL) |
353 | return -1; | 353 | return -1; |
354 | 354 | ||
355 | self->sb = newtVerticalScrollbar(self->width + 1, 0, self->height, | 355 | self->sb = newtVerticalScrollbar(self->width, 0, self->height, |
356 | HE_COLORSET_NORMAL, | 356 | HE_COLORSET_NORMAL, |
357 | HE_COLORSET_SELECTED); | 357 | HE_COLORSET_SELECTED); |
358 | if (self->sb == NULL) | 358 | if (self->sb == NULL) |