SVN commit 732342 by raabe: - Do a final match() before handling the entered string. It was very easy to confuse krunner by typing a bit quickly (I can type stuff like 'plasmoidviewer knewsticker' reasonably fast); krunner was always only handling the string which I typed up to the last match timer timeout (which ticks at 5Hz) before pressing Return. I entered 'plasmoidviewer knewsticker' and it often tried to do run 'plasmoidviewer kn' or once even only 'plasm' M +2 -0 interface.cpp --- trunk/KDE/kdebase/workspace/krunner/interface.cpp #732341:732342 @@ -395,6 +395,8 @@ void Interface::exec() { + match(); + if (m_searchTerm->completionBox() && m_searchTerm->completionBox()->isVisible()) { return; }