mirror of https://github.com/GNOME/gimp.git
tools: in performance-log-viewer.py, handle markers with > INT_MAX timestamps
This commit is contained in:
parent
287adbd1e6
commit
84ff130e18
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue