aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2013-01-22 04:09:42 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-01-31 11:07:48 -0500
commit34b9564373a9e1d8c33d07824fae228a381d1803 (patch)
tree9156ea48eaba21b52cb764cbd80512c042334b60 /tools/perf
parentcb16008bcc6ea53617ca06c9eb4ab0ecafe04585 (diff)
perf gtk/browser: Trim column header string when event group enabled
When event group feature is enabled, each column header is expanded to match with the whole group column width. But this is not needed for GTK+ browser since ti usually use variable-width fonts. So trim it. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Pekka Enberg <penberg@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1358845787-1350-15-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/ui/gtk/hists.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/ui/gtk/hists.c b/tools/perf/ui/gtk/hists.c
index c87a98c7efaa..caa554bdbfe7 100644
--- a/tools/perf/ui/gtk/hists.c
+++ b/tools/perf/ui/gtk/hists.c
@@ -170,7 +170,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists)
170 fmt->header(&hpp); 170 fmt->header(&hpp);
171 171
172 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), 172 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view),
173 -1, s, 173 -1, ltrim(s),
174 renderer, "markup", 174 renderer, "markup",
175 col_idx++, NULL); 175 col_idx++, NULL);
176 } 176 }