From: Namhyung Kim <[email protected]> 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 <[email protected]> Signed-off-by: Namhyung Kim <[email protected]> --- 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..880110371ca5 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, } } + do { + GtkTreeViewColumn *column; + + column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); + gtk_tree_view_column_set_resizable(column, TRUE); + } while (col_idx--); + 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 [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

