summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-01-25 22:42:51 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-01-25 22:42:51 +0100
commit13f28e30692d61309b343720ec0d3f8b441eae51 (patch)
treeb3c7be684529647343e9205b95db56b276cbec55
parentcppcheck (diff)
downloadrekonq-13f28e30692d61309b343720ec0d3f8b441eae51.tar.xz
Remove F6 and use ALT + D as secondary shorcut to open location
This is the secondary shortcut used by Firefox & Chrome BUG: 275174
-rw-r--r--src/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 6bb394c6..16f1e92a 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -373,7 +373,7 @@ void MainWindow::setupActions()
// Open location action
a = new KAction(i18n("Open Location"), this);
KShortcut openLocationShortcut(Qt::CTRL + Qt::Key_L);
- openLocationShortcut.setAlternate(Qt::Key_F6);
+ openLocationShortcut.setAlternate(Qt::ALT + Qt::Key_D);
a->setShortcut(openLocationShortcut);
actionCollection()->addAction(QL1S("open_location"), a);
connect(a, SIGNAL(triggered(bool)) , this, SLOT(openLocation()));