From 03393007dde9fd385fa0cd71539e10cafdab0c6f Mon Sep 17 00:00:00 2001 From: Juha Jeronen Date: Tue, 21 Aug 2012 15:21:17 +0300 Subject: [PATCH] xdot.py: comment update --- xdot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xdot.py b/xdot.py index 553b7e5..c120f77 100644 --- a/xdot.py +++ b/xdot.py @@ -1867,6 +1867,7 @@ class DotWidget(gtk.DrawingArea): while gtk.events_pending(): gtk.main_iteration_do(True) + # The Find system updates its state via this callback mechanism. if self.reload_callback is not None: self.reload_callback() @@ -2199,6 +2200,7 @@ class DotWidget(gtk.DrawingArea): def set_reload_callback(self, func): # Set a callback to run at the end of reload(). + # This is used by the Find system. self.reload_callback = func class DotWindow(gtk.Window):