tools: in performance-log-viewer.py, right-align backtrace frame number column

(cherry picked from commit 51d9934942)
This commit is contained in:
Ell
2018-09-23 01:37:27 -04:00
parent fab6b4746d
commit 54fbf1a8cb

View File

@ -1640,7 +1640,7 @@ class BacktraceViewer (Gtk.Box):
tree.append_column (col)
col.set_resizable (True)
cell = Gtk.CellRendererText ()
cell = Gtk.CellRendererText (xalign = 1)
col.pack_start (cell, False)
col.add_attribute (cell, "text", self.FrameStore.ID)