[gimp/gimp-2-10] tools: in performance-log-viewer.py, handle markers with > INT_MAX timestamps



commit f70d24784c6b227ae92a9b51f3818a5c45a99c5e
Author: Ell <ell_se yahoo com>
Date:   Fri Mar 6 12:34:35 2020 +0200

    tools: in performance-log-viewer.py, handle markers with > INT_MAX timestamps
    
    (cherry picked from commit 84ff130e1815cf6ba0617bf56c0aa9b6ee8539e2)

 tools/performance-log-viewer.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/tools/performance-log-viewer.py b/tools/performance-log-viewer.py
index f2938500e8..8108617334 100755
--- a/tools/performance-log-viewer.py
+++ b/tools/performance-log-viewer.py
@@ -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))


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]