pidgin/gtkblist.c

changeset 22031
64dada91f5b0
parent 22009
cf5520902bae
child 22043
a0e23e746e07
equal deleted inserted replaced
22028:539b4bbeb019 22031:64dada91f5b0
2968 } 2968 }
2969 2969
2970 return FALSE; 2970 return FALSE;
2971 } 2971 }
2972 2972
2973 static void pidgin_blist_leave_cb (GtkWidget *w, GdkEventCrossing *e, gpointer n) 2973 static gboolean pidgin_blist_leave_cb (GtkWidget *w, GdkEventCrossing *e, gpointer n)
2974 { 2974 {
2975 if (gtkblist->timeout) { 2975 if (gtkblist->timeout) {
2976 g_source_remove(gtkblist->timeout); 2976 g_source_remove(gtkblist->timeout);
2977 gtkblist->timeout = 0; 2977 gtkblist->timeout = 0;
2978 } 2978 }
2986 !((e->x > gtkblist->contact_rect.x) && (e->x < (gtkblist->contact_rect.x + gtkblist->contact_rect.width)) && 2986 !((e->x > gtkblist->contact_rect.x) && (e->x < (gtkblist->contact_rect.x + gtkblist->contact_rect.width)) &&
2987 (e->y > gtkblist->contact_rect.y) && (e->y < (gtkblist->contact_rect.y + gtkblist->contact_rect.height)))) { 2987 (e->y > gtkblist->contact_rect.y) && (e->y < (gtkblist->contact_rect.y + gtkblist->contact_rect.height)))) {
2988 pidgin_blist_collapse_contact_cb(NULL, gtkblist->mouseover_contact); 2988 pidgin_blist_collapse_contact_cb(NULL, gtkblist->mouseover_contact);
2989 gtkblist->mouseover_contact = NULL; 2989 gtkblist->mouseover_contact = NULL;
2990 } 2990 }
2991 return FALSE;
2991 } 2992 }
2992 2993
2993 static void 2994 static void
2994 toggle_debug(void) 2995 toggle_debug(void)
2995 { 2996 {

mercurial