diff console/gntconv.c @ 14234:04bdbbefbd1d

[gaim-migrate @ 16916] Mark the messages from gnthistory as delayed, and don't print the timestamps for delayed messages (I think it makes sense). committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 20 Aug 2006 19:37:33 +0000
parents 8c13a650cef5
children e7de1f6d9f35
line wrap: on
line diff
--- a/console/gntconv.c	Sun Aug 20 18:55:37 2006 +0000
+++ b/console/gntconv.c	Sun Aug 20 19:37:33 2006 +0000
@@ -240,7 +240,9 @@
 
 	gnt_text_view_next_line(GNT_TEXT_VIEW(ggconv->tv));
 
-	if (gaim_prefs_get_bool("/gaim/gnt/conversations/timestamps"))
+	/* Unnecessary to print the timestamp for delayed message */
+	if (!(flags & GAIM_MESSAGE_DELAYED) &&
+			gaim_prefs_get_bool("/gaim/gnt/conversations/timestamps"))
 		gnt_text_view_append_text_with_flags(GNT_TEXT_VIEW(ggconv->tv),
 					gaim_utf8_strftime("(%H:%M:%S) ", localtime(&mtime)), GNT_TEXT_FLAG_DIM);
 	if (who && *who && (flags & (GAIM_MESSAGE_SEND | GAIM_MESSAGE_RECV)))