diff options
author | Rohan Garg <rohangarg@kubuntu.org> | 2010-12-21 00:04:39 +0530 |
---|---|---|
committer | Rohan Garg <rohangarg@kubuntu.org> | 2010-12-21 00:04:39 +0530 |
commit | cedf75a6f9377f2415f98e654586008e62f6147a (patch) | |
tree | ecd263d628253ce2b004c3865e2d43e222a17f8c | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-cedf75a6f9377f2415f98e654586008e62f6147a.tar.xz |
Ctrl+Shift+P shortcut for Private browsing
-rw-r--r-- | src/mainwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 447885d0..be534432 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -413,6 +413,7 @@ void MainWindow::setupActions() connect(a, SIGNAL(triggered(bool)), this, SLOT(viewPageSource())); a = Application::instance()->privateBrowsingAction(); + a->setShortcut(Qt::ControlModifier + Qt::ShiftModifier + Qt::Key_P); actionCollection()->addAction(QL1S("private_browsing"), a); a = new KAction(KIcon("edit-clear"), i18n("Clear Private Data..."), this); |