aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--libempathy-gtk/empathy-group-chat.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 070bb6e47..5c2c62568 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}
}