From c8fa6bd6942f4d15e7c9bbe8068b01e7f31814ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Qui=C3=B1ones?= Date: Mon, 26 Aug 2013 17:15:23 -0300 Subject: [PATCH] Web activity: set activity name as the title of the window - SL #4605 At least View Source uses it. --- src/sugar3/activity/webactivity.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sugar3/activity/webactivity.py b/src/sugar3/activity/webactivity.py index 4ea31d0d..5ba17cea 100644 --- a/src/sugar3/activity/webactivity.py +++ b/src/sugar3/activity/webactivity.py @@ -59,6 +59,8 @@ class WebActivity(Gtk.Window): self._web_view.load_uri("activity://%s/index.html" % self._bundle_id) + self.set_title(activity.get_bundle_name()) + def run_main_loop(self): Gtk.main()