From 186e159a1da4f83e95358c3567e7b05aceb241fa Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Wed, 31 Oct 2012 00:35:06 +0000 Subject: Fix the reload button in the url entry, SL #4240 Call self._browser.reload() just if the entry does not have focus and the page is not loading. Signed-off-by: Manuel Kaufmann Acked-by: Simon Schampijer --- diff --git a/webtoolbar.py b/webtoolbar.py index 2307231..3a0ec57 100644 --- a/webtoolbar.py +++ b/webtoolbar.py @@ -461,7 +461,6 @@ class PrimaryToolbar(ToolbarBase): not self._tabbed_view.is_current_page_pdf(): entry.set_text('') else: - self._browser.reload() if self._loading: self._browser.stop_loading() else: -- cgit v0.9.1