From e831a6e9977af1d7c5bdcb97b9a54f5c038df0a4 Mon Sep 17 00:00:00 2001 From: Manuel QuiƱones Date: Fri, 04 May 2012 12:37:36 +0000 Subject: Update the URL entry text when the address is changed SL #3564 The WebEntry is not updating the text when changing the address, now it does the same as when the title is changed. Signed-off-by: Manuel QuiƱones Acked-by: Simon Schampijer --- (limited to 'webtoolbar.py') diff --git a/webtoolbar.py b/webtoolbar.py index d0f2dc9..e4e647a 100644 --- a/webtoolbar.py +++ b/webtoolbar.py @@ -80,6 +80,8 @@ class WebEntry(iconentry.IconEntry): def _set_address(self, address): self._address = address + if address is not None and self.props.has_focus: + self._set_text(address) address = GObject.property(type=str, setter=_set_address) -- cgit v0.9.1