Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/browser.py
diff options
context:
space:
mode:
authorManuel Kaufmann <humitos@gmail.com>2012-09-24 20:40:34 (GMT)
committer Manuel QuiƱones <manuq@laptop.org>2012-09-27 23:38:08 (GMT)
commit5d0188398a92d6f28fbe5a7aa22f43b3e2edfe21 (patch)
tree93f86bd0aef65c2bf14cf080d92df70e72b62358 /browser.py
parente9915e3da8f09ca11b4c1eb9c9e4b96a36206f93 (diff)
Display only the URL in the URL entry SL #3553
The Title of the current page is no longer shown in the URL entry. Now, it's only shown in the tab and the current URL is visible all the time in the URL entry. Signed-off-by: Manuel Kaufmann <humitos@gmail.com> Acked-by: Manuel QuiƱones <manuq@laptop.org>
Diffstat (limited to 'browser.py')
-rw-r--r--browser.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/browser.py b/browser.py
index b315bf6..fab8012 100644
--- a/browser.py
+++ b/browser.py
@@ -477,6 +477,10 @@ class Browser(WebKit.WebView):
# Scale text and graphics:
self.set_full_content_zoom(True)
+ # This property is used to set the title immediatly the user
+ # presses Enter on the URL Entry
+ self.loading_uri = None
+
# Reference to the global history and callbacks to handle it:
self._global_history = globalhistory.get_global_history()
self.connect('notify::load-status', self.__load_status_changed_cb)