SVN commit 1156102 by rytilahti: Don't show joins&quits in chatwindow, if user has decided not to show events BUGS:109822 M +2 -2 chatview.cpp --- trunk/KDE/kdenetwork/kopete/kopete/chatwindow/chatview.cpp #1156101:1156102 @@ -543,7 +543,7 @@ this, SLOT( slotPropertyChanged( Kopete::PropertyContainer *, const QString &, const QVariant &, const QVariant & ) ) ) ; } - if( !suppress && m_manager->members().count() > 1 ) { + if( !suppress && Kopete::BehaviorSettings::self()->showEvents() && m_manager->members().count() > 1 ) { QString contactName = m_messagePart->formatName(contact, Qt::PlainText); sendInternalMessage( i18n("%1 has joined the chat.", contactName) ); } @@ -588,7 +588,7 @@ } } - if ( !suppressNotification ) + if ( !suppressNotification && Kopete::BehaviorSettings::self()->showEvents() ) { QString contactName = m_messagePart->formatName(contact, Qt::PlainText); if ( reason.isEmpty() )