Version: (using KDE KDE 3.5.4) In chat: I'm saying "ok, back to work, cu" and close the window, then other side closes his/her window and "XXX has ended their participation in the chat session" makes my try flashing only because of that info. Little annoying.
SVN commit 570654 by ogoffart: doesn't flash taskbar or show a bubble for the 'gone' notification BUG: 131951 M +2 -1 jabbercontact.cpp --- branches/kopete/0.12/kopete/protocols/jabber/jabbercontact.cpp #570653:570654 @@ -301,7 +301,8 @@ Kopete::Message m=Kopete::Message ( this, mManager->members(), i18n("%1 has ended their participation in the chat session.").arg(metaContact()->displayName()), Kopete::Message::Internal ); - mManager->appendMessage ( m, message.from().resource () ); + m.setImportance(Kopete::Message::Low); + mManager->view()->appendMessage ( m ); //use KopeteView::AppendMessage to bypass notifications } } }