From 4664fa73fb0fc4bcc6c6329d4b0b1005d7aa2e18 Mon Sep 17 00:00:00 2001 From: Ell Date: Sun, 21 Oct 2018 03:33:51 -0400 Subject: [PATCH] tools: in performance-log-viewer.py, allow sorting profile by function name In the performance-log viewer's profile view, allow sorting the call-graph tree-views by function name, in addition to the inclusive/exclusive frequencies. --- tools/performance-log-viewer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/performance-log-viewer.py b/tools/performance-log-viewer.py index 20add41898..45ddd12c81 100755 --- a/tools/performance-log-viewer.py +++ b/tools/performance-log-viewer.py @@ -2570,6 +2570,7 @@ class ProfileViewer (Gtk.ScrolledWindow): col = Gtk.TreeViewColumn (title = "Function") tree.append_column (col) col.set_resizable (True) + col.set_sort_column_id (store.FUNCTION) cell = Gtk.CellRendererText (ellipsize = Pango.EllipsizeMode.END) col.pack_start (cell, True)