diff options
author | Robert Riemann <saloution@googlemail.com> | 2011-11-29 22:56:08 +0100 |
---|---|---|
committer | Robert Riemann <saloution@googlemail.com> | 2011-11-29 22:56:08 +0100 |
commit | b942909b7b466d17d7ddef39dae591cdee6de584 (patch) | |
tree | 41804b845a1799ae3c8a54de1f68904ac69066af /src | |
parent | rekonq 0.8.54 (diff) | |
download | rekonq-b942909b7b466d17d7ddef39dae591cdee6de584.tar.xz |
fix input of "/" in url bar when using NEO keyboard layout
Using the NEO keyboard layout, you need a combination of keys to trigger
the slash (mod3+s). Unfortunatly this triggers the shortcut for
searching inside the document. This way the alternate shortcut for
searching needs to be removed.
The same bug existed in kopete: bug 267568
Thanks goes to Thomas Murach for helping me grepping the source code.
This is my first contribution in code to KDE. Hurray!
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index ec3098c3..0ccb6110 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -324,7 +324,6 @@ void MainWindow::setupActions() a = KStandardAction::find(m_findBar, SLOT(show()), actionCollection()); KShortcut findShortcut = KStandardShortcut::find(); - findShortcut.setAlternate(Qt::Key_Slash); a->setShortcut(findShortcut); KStandardAction::findNext(this, SLOT(findNext()) , actionCollection()); |