diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-01-25 22:42:51 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-01-25 22:42:51 +0100 |
commit | 13f28e30692d61309b343720ec0d3f8b441eae51 (patch) | |
tree | b3c7be684529647343e9205b95db56b276cbec55 | |
parent | cppcheck (diff) | |
download | rekonq-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.cpp | 2 |
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())); |