From 13f28e30692d61309b343720ec0d3f8b441eae51 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Wed, 25 Jan 2012 22:42:51 +0100 Subject: Remove F6 and use ALT + D as secondary shorcut to open location This is the secondary shortcut used by Firefox & Chrome BUG: 275174 --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainwindow.cpp') 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())); -- cgit v1.2.1