diff options
author | David E. Narváez <david.narvaez@computer.org> | 2012-02-21 02:29:01 -0500 |
---|---|---|
committer | David E. Narváez <david.narvaez@computer.org> | 2012-02-21 02:29:01 -0500 |
commit | 79c808a25d680b5782c63f02258b3d0492d55f05 (patch) | |
tree | 5b4583b23433535e57b7d0d43979475aa0fea87f | |
parent | Fix downloads page (diff) | |
download | rekonq-79c808a25d680b5782c63f02258b3d0492d55f05.tar.xz |
Hook the urlChanged Signal to History Actions Update
This catches navigation to named anchors
BUG: 294538
REVIEW: 104035
-rw-r--r-- | src/mainview.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 8c637639..19e5531d 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -629,6 +629,8 @@ void MainView::webViewUrlChanged(const QUrl &url) int index = indexOf(view->parentWidget()); if (ReKonfig::hoveringTabOption() == 2) tabBar()->setTabToolTip(index, url.toString()); + + rApp->mainWindow()->updateHistoryActions(); } |