From b942909b7b466d17d7ddef39dae591cdee6de584 Mon Sep 17 00:00:00 2001 From: Robert Riemann Date: Tue, 29 Nov 2011 22:56:08 +0100 Subject: 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! --- src/mainwindow.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/mainwindow.cpp') 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()); -- cgit v1.2.1