# HG changeset patch # User Sadrul Habib Chowdhury # Date 1188929853 0 # Node ID 1481ea6bb805e7a17cb9eeb97eaff6b95da88cc3 # Parent 0b8740878f9e96973bf8e6e6e2a57499ec4b3d0b Do not bother the prpl about a tooltip for a disconnected account. Fixes #2945. diff -r 0b8740878f9e -r 1481ea6bb805 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Tue Sep 04 05:44:21 2007 +0000 +++ b/pidgin/gtkblist.c Tue Sep 04 18:17:33 2007 +0000 @@ -3101,7 +3101,8 @@ purple_notify_user_info_add_pair(user_info, _("Status"), _("Offline")); } - if (prpl_info && prpl_info->tooltip_text) + if (purple_account_is_connected(b->account) && + prpl_info && prpl_info->tooltip_text) { /* Additional text from the PRPL */ prpl_info->tooltip_text(b, user_info, full);