tools: in performance-log-viewer.py, handle markers with > INT_MAX timestamps

This commit is contained in:
Ell 2020-03-06 12:34:35 +02:00
parent 287adbd1e6
commit 84ff130e18
1 changed files with 1 additions and 1 deletions

View File

@ -1687,7 +1687,7 @@ class MarkersViewer (Gtk.ScrolledWindow):
DESC = 2
def __init__ (self):
Gtk.ListStore.__init__ (self, int, int, str)
Gtk.ListStore.__init__ (self, int, GObject.TYPE_INT64, str)
for marker in markers:
self.append ((marker.id, marker.t, marker.description))