From: Namhyung Kim <namhyung....@lge.com> Sometimes it's annoying to see when some symbols have very wierd long names. So it might be a good idea to make column size changable.
Cc: Pekka Enberg <penb...@kernel.org> Signed-off-by: Namhyung Kim <namhy...@kernel.org> --- There was a warning when callchains were not used. tools/perf/ui/gtk/hists.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/perf/ui/gtk/hists.c b/tools/perf/ui/gtk/hists.c index 4e96f7a9f6d1..00f718094978 100644 --- a/tools/perf/ui/gtk/hists.c +++ b/tools/perf/ui/gtk/hists.c @@ -327,6 +327,13 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists, } } + for (col_idx = 0; col_idx < nr_cols; col_idx++) { + GtkTreeViewColumn *column; + + column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); + gtk_tree_view_column_set_resizable(column, TRUE); + } + g_signal_connect(view, "row-activated", G_CALLBACK(on_row_activated), NULL); gtk_container_add(GTK_CONTAINER(window), view); -- 1.7.11.7 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/