aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Mason Larobina <mason.larobina@gmail.com>2009-08-01 23:59:41 +0800
committerGravatar Mason Larobina <mason.larobina@gmail.com>2009-08-01 23:59:41 +0800
commit17a60c4e168c56973bbd5b5c6e9a212f4e3ec901 (patch)
treeafd6ad32bc04547af297e091fdf7c8b3e553ec50
parent8d5d1e21c1dfef6ad2f26bf31b2cbc28e88c82de (diff)
Fix code comment.
-rwxr-xr-xexamples/data/uzbl/scripts/uzbl_tabbed.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/data/uzbl/scripts/uzbl_tabbed.py b/examples/data/uzbl/scripts/uzbl_tabbed.py
index b7612e6..9ffa97d 100755
--- a/examples/data/uzbl/scripts/uzbl_tabbed.py
+++ b/examples/data/uzbl/scripts/uzbl_tabbed.py
@@ -1317,7 +1317,9 @@ class UzblTabbed:
for (tab, uzbl) in self.tabs.items():
uzbl.send("exit")
- # Add a gobject timer to make sure the application force-quits after a period.
+ # Add a gobject timer to make sure the application force-quits after a
+ # reasonable period. Calling quit when all the tabs haven't had time to
+ # close should be a last resort.
timer = "force-quit"
timerid = timeout_add(5000, self.quit, timer)
self._timers[timer] = timerid