From kde-commits Tue Apr 12 11:04:25 2005 From: Anders Lund Date: Tue, 12 Apr 2005 11:04:25 +0000 To: kde-commits Subject: kdelibs/kate/part Message-Id: <20050412110425.4CF5A633 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111330387607330 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;