From kde-commits Sat Nov 03 15:06:04 2007 From: Frerich Raabe Date: Sat, 03 Nov 2007 15:06:04 +0000 To: kde-commits Subject: KDE/kdebase/workspace/krunner Message-Id: <1194102364.343390.28671.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=119410237211832 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; }