diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-06-20 09:46:23 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-06-20 09:46:23 +0200 |
commit | 205e89597c14473f34ace33c30d503eb9b7cf7e7 (patch) | |
tree | c907c58be84182c5ef60d03f29d9601875fc524b /src/mainwindow.cpp | |
parent | Removed unuseful history dialog. We use just history panel, from now on.. (diff) | |
download | rekonq-205e89597c14473f34ace33c30d503eb9b7cf7e7.tar.xz |
History Panel Action fix
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 3 |
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); } |