summaryrefslogtreecommitdiffstats
path: root/unit_trace/viz/viewer.py
diff options
context:
space:
mode:
authorGary Bressler <garybressler@nc.rr.com>2010-03-20 12:47:31 -0400
committerGary Bressler <garybressler@nc.rr.com>2010-03-20 12:47:31 -0400
commitc712c699126e16003ee69e2d82e51007ab2f58ea (patch)
tree724913e93a6c2fb0dbe689a8664b552830399329 /unit_trace/viz/viewer.py
parentee7ae82ae6df1378203957b7fa77066153e13c36 (diff)
Significant performance improvements in the graphical rendering, as
well as the eradication of several bugs Also, visualizer is now integrated into the main unit-trace command line tool (use -v option) Note that files are now taken in from the command line, no longer from the GUI
Diffstat (limited to 'unit_trace/viz/viewer.py')
-rw-r--r--unit_trace/viz/viewer.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/unit_trace/viz/viewer.py b/unit_trace/viz/viewer.py
index 236a467..909da76 100644
--- a/unit_trace/viz/viewer.py
+++ b/unit_trace/viz/viewer.py
@@ -68,7 +68,6 @@ class GraphArea(gtk.DrawingArea):
68 # window manager must have caused the expose event. So just update the 68 # window manager must have caused the expose event. So just update the
69 # expose_event's bounding area. 69 # expose_event's bounding area.
70 if not self.dirtied_regions or expose_event.send_event: 70 if not self.dirtied_regions or expose_event.send_event:
71 print 'forced expose'
72 self.dirtied_regions = [(expose_event.area.x, expose_event.area.y, 71 self.dirtied_regions = [(expose_event.area.x, expose_event.area.y,
73 expose_event.area.width, expose_event.area.height)] 72 expose_event.area.width, expose_event.area.height)]
74 73