summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO2
-rw-r--r--src/mainwindow.cpp10
2 files changed, 3 insertions, 9 deletions
diff --git a/TODO b/TODO
index 5b1a08da..9695b2fa 100644
--- a/TODO
+++ b/TODO
@@ -27,4 +27,4 @@ TO 0.1 release
- history side panel
- status bar
- menu bar
-- fullscreen action in webView \ No newline at end of file
++ fullscreen action in webView \ No newline at end of file
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 3311dfa8..930a4e64 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -336,15 +336,9 @@ void MainWindow::setupSidePanel()
addDockWidget(Qt::LeftDockWidgetArea, m_sidePanel);
// setup side panel actions
- KAction* a = new KAction(this);
- a->setText(i18n("History"));
- a->setCheckable(true);
- a->setChecked(ReKonfig::showSideBar());
- a->setShortcut(KShortcut(Qt::CTRL + Qt::Key_H));
+ QAction* a = m_sidePanel->toggleViewAction();
+ a->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_H));
actionCollection()->addAction(QLatin1String("show_history_panel"), a);
-
- // connect to toogle action
- connect(a, SIGNAL(triggered(bool)), m_sidePanel->toggleViewAction(), SLOT(trigger()));
}