summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-06-20 09:46:23 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-06-20 09:46:23 +0200
commit205e89597c14473f34ace33c30d503eb9b7cf7e7 (patch)
treec907c58be84182c5ef60d03f29d9601875fc524b /src/mainwindow.cpp
parentRemoved unuseful history dialog. We use just history panel, from now on.. (diff)
downloadrekonq-205e89597c14473f34ace33c30d503eb9b7cf7e7.tar.xz
History Panel Action fix
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 3faa4699..ec3f45c6 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -338,7 +338,8 @@ void MainWindow::setupSidePanel()
// setup side panel actions
QAction* a = m_sidePanel->toggleViewAction();
- a->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_H));
+ a->setText( i18n("History Panel") );
+ a->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_H)); // WARNING : is this the right shortcut ??
actionCollection()->addAction(QLatin1String("show_history_panel"), a);
}