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:32:53 -0500 |
commit | 0a6fb4334297912500770fda896c8d56872a6fa6 (patch) | |
tree | 9a2c54f944ffe20e61bdb43f3240a20fca9f75d6 /src/mainview.cpp | |
parent | Fix downloads page (diff) | |
download | rekonq-0a6fb4334297912500770fda896c8d56872a6fa6.tar.xz |
Hook the urlChanged Signal to History Actions Update
This catches navigation to named anchors
REVIEW: 104035
cherry-picked from 79c808a
Diffstat (limited to 'src/mainview.cpp')
-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(); } |