|
From: Eric W. <war...@us...> - 2001-09-21 17:51:16
|
Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv17997
Modified Files:
conversation.c
Log Message:
ctl-l
Index: conversation.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/conversation.c,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -d -r1.261 -r1.262
--- conversation.c 2001/09/21 00:52:54 1.261
+++ conversation.c 2001/09/21 17:51:13 1.262
@@ -700,6 +700,8 @@
gtk_signal_emit_stop_by_name(GTK_OBJECT(entry), "key_press_event");
}
}
+ if (event->keyval == 'l')
+ gtk_imhtml_clear(GTK_IMHTML(c->text));
if ((!c->is_chat && (im_options & OPT_IM_ONE_WINDOW)) ||
( c->is_chat && (chat_options & OPT_CHAT_ONE_WINDOW))) {
GtkWidget *notebook = (c->is_chat ? chat_notebook : convo_notebook);
|