Fix starting browser activity

This commit is contained in:
Dan Williams
2006-06-16 16:31:54 -04:00
parent 0363ed5457
commit e4a8518d02
2 changed files with 7 additions and 3 deletions
+2 -2
View File
@@ -65,9 +65,9 @@ class ActivitiesView(gtk.TreeView):
print 'Activated row %s %s' % (address, activity_id)
if activity_id is None:
browser_shell.open_browser(address, ignore_reply=True)
browser_shell.open_browser(address)
else:
browser_shell.open_browser_with_id(address, activity_id, ignore_reply=True)
browser_shell.open_browser_with_id(address, activity_id)
class StartPage(gtk.HBox):
def __init__(self):