Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2012-05-21 15:50:00 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2012-05-22 11:52:39 (GMT)
commit4c7e12ef0f1f1ad452379f609e6cd2f299f950d4 (patch)
tree701c8ccf0a6baaf6d5d0674bb5a23fd4b9344452
parentca214d1893f54286c199e66d8617e764e49a6a99 (diff)
Fix for displaying "Untitled" when the page has no title #3619
This bug was introduced in commit 04a0de3de3b24ae22bf326de046fb256bdbfeccb . Signed-off-by: Manuel Quiñones <manuq@laptop.org> Reviewed-By: Manuel Kaufmann <humitos@gmail.com> Acked-by: Simon Schampijer <simon@laptop.org>
-rw-r--r--webtoolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webtoolbar.py b/webtoolbar.py
index e7c66c9..6241eb1 100644
--- a/webtoolbar.py
+++ b/webtoolbar.py
@@ -358,7 +358,7 @@ class PrimaryToolbar(ToolbarBase):
self.entry._set_title(_('Loading...'))
elif status == WebKit.LoadStatus.FINISHED:
if widget.props.title == None:
- self.entry._set_title(_('Loading...'))
+ self.entry._set_title(_('Untitled'))
self._set_status(widget.get_load_status())
def __progress_changed_cb(self, widget, param):