diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libempathy-gtk/empathy-group-chat.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-11-22 Xavier Claessens <xclaesse@gmail.com> + + * libempathy-gtk/empathy-group-chat.c: use ":" instead of "," for nick + completion. + 2007-11-21 Xavier Claessens <xclaesse@gmail.com> * TODO: Updated. diff --git a/libempathy-gtk/empathy-group-chat.c b/libempathy-gtk/empathy-group-chat.c index 6d3ffa79b..88555339c 100644 --- a/libempathy-gtk/empathy-group-chat.c +++ b/libempathy-gtk/empathy-group-chat.c @@ -652,7 +652,7 @@ group_chat_key_press_event (EmpathyChat *chat, if (len == 1) { if (is_start_of_buffer) { - gtk_text_buffer_insert_at_cursor (buffer, ", ", 2); + gtk_text_buffer_insert_at_cursor (buffer, ": ", 2); } } |