From 4c7e12ef0f1f1ad452379f609e6cd2f299f950d4 Mon Sep 17 00:00:00 2001 From: Manuel QuiƱones Date: Mon, 21 May 2012 15:50:00 +0000 Subject: Fix for displaying "Untitled" when the page has no title #3619 This bug was introduced in commit 04a0de3de3b24ae22bf326de046fb256bdbfeccb . Signed-off-by: Manuel QuiƱones Reviewed-By: Manuel Kaufmann Acked-by: Simon Schampijer --- 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): -- cgit v0.9.1