diff options
author | Felix Rohrbach <fxrh@gmx.de> | 2011-01-05 09:45:49 +0100 |
---|---|---|
committer | Jon Ander PeƱalba <jonan88@gmail.com> | 2011-01-05 09:45:49 +0100 |
commit | ec6384711a5cd4805657cb42eda0dc17f46b95e1 (patch) | |
tree | 32847d74fd9004b47fb1725995bb8c613c759dd2 /src/mainview.cpp | |
parent | charset static tests (diff) | |
download | rekonq-ec6384711a5cd4805657cb42eda0dc17f46b95e1.tar.xz |
Horizontal scroll wheel may now be used to navigate through history (Disabled by default).
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 850101e2..94dc1688 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -286,6 +286,8 @@ WebTab *MainView::newWebTab(bool focused) connect(tab, SIGNAL(titleChanged(const QString &)), this, SLOT(webViewTitleChanged(const QString &))); connect(tab->view(), SIGNAL(urlChanged(const QUrl &)), this, SLOT(webViewUrlChanged(const QUrl &))); connect(tab->view(), SIGNAL(iconChanged()), this, SLOT(webViewIconChanged())); + connect(tab->view(), SIGNAL(openPreviousInHistory()), this, SIGNAL(openPreviousInHistory())); + connect(tab->view(), SIGNAL(openNextInHistory()), this, SIGNAL(openNextInHistory())); // connecting webPage signals with mainview connect(tab->page(), SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested())); |