diff options
| author | Peter Penz <[email protected]> | 2012-03-19 16:47:11 +0100 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2012-03-19 16:53:53 +0100 |
| commit | 5798e081f52371b9fd91cf0348cc946ebcc28a4a (patch) | |
| tree | 2e393e81c00b14fbfa6bb31d28ed9b8feb96486f /src/dolphinmainwindow.cpp | |
| parent | 476128f01aba48f6519ead627d39175443f59758 (diff) | |
Let additional mouse buttons trigger history navigation
Thanks to Sebastian Dörner for the patch!
REVIEW: 101335
BUG: 181823
FIXED-IN: 4.9
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 4c551b2c3..947db7703 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -2123,6 +2123,10 @@ void DolphinMainWindow::connectViewSignals(DolphinViewContainer* container) this, SLOT(enableStopAction())); connect(view, SIGNAL(finishedPathLoading(KUrl)), this, SLOT(disableStopAction())); + connect(view, SIGNAL(goBackRequested()), + this, SLOT(goBack())); + connect(view, SIGNAL(goForwardRequested()), + this, SLOT(goForward())); const KUrlNavigator* navigator = container->urlNavigator(); connect(navigator, SIGNAL(urlChanged(KUrl)), |
