SVN commit 1057631 by apol: Always set the systray online icon when connected. Otherwise if you started by connecting to "Busy" for instance, you got the gray icon and the busy overlay instead of the online+busy as expected. M +3 -0 systemtray.cpp --- trunk/KDE/kdenetwork/kopete/kopete/systemtray.cpp #1057630:1057631 @@ -214,16 +214,19 @@ } case Kopete::OnlineStatus::Invisible: { + setIconByName(mKopeteIcon); setOverlayIconByName("user-invisible"); break; } case Kopete::OnlineStatus::Away: { + setIconByName(mKopeteIcon); setOverlayIconByName("user-away"); break; } case Kopete::OnlineStatus::Busy: { + setIconByName(mKopeteIcon); setOverlayIconByName("user-busy"); break; }