CVS commit by alund: Don't show the completion box if it is allready in use. This should solve conflicts when more clients use the completion. CCMAIL: kwrite-devel@kde.org M +2 -0 katecodecompletion.cpp 1.42 --- kdelibs/kate/part/katecodecompletion.cpp #1.41:1.42 @@ -147,4 +147,6 @@ void KateCodeCompletion::showCompletionB kdDebug(13035) << "showCompletionBox " << endl; + if ( codeCompletionVisible() ) return; + m_caseSensitive = casesensitive; m_complList = complList;