From: Eric W. <war...@us...> - 2001-12-04 19:51:30
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv11990 Modified Files: buddy_chat.c Log Message: it's december. Index: buddy_chat.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/buddy_chat.c,v retrieving revision 1.134 retrieving revision 1.135 diff -u -d -r1.134 -r1.135 --- buddy_chat.c 2001/12/04 07:53:54 1.134 +++ buddy_chat.c 2001/12/04 19:51:27 1.135 @@ -811,7 +811,10 @@ static gint right_click_chat(GtkObject *obj, GdkEventButton *event, struct conversation *b) { - if (event->button == 3 && event->type == GDK_BUTTON_PRESS) { + if (event->button == 1 && event->type == GDK_2BUTTON_PRESS) { + if (!find_conversation(gtk_object_get_user_data(obj))) + new_conversation(gtk_object_get_user_data(obj)); + } else if (event->button == 3 && event->type == GDK_BUTTON_PRESS) { GtkWidget *menu; GtkWidget *button; |