Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/browser.py
diff options
context:
space:
mode:
Diffstat (limited to 'browser.py')
-rw-r--r--browser.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/browser.py b/browser.py
index d311edf..c32d49e 100644
--- a/browser.py
+++ b/browser.py
@@ -260,7 +260,9 @@ class Browser(webkit.WebView):
history.add_item(entry)
if data:
- history.go_to_item(history.get_current_item())
+ # workaround to get the history back on track
+ self.go_back()
+ self.go_forward()
else:
self.load_uri('about:blank')