# HG changeset patch # User Luke Schierer # Date 1052362720 0 # Node ID 5e1eeeba4e68e3e16afa95434741814478564adc # Parent e938119382cf2f9cde46ba0ba5528b2dacc2e4bb [gaim-migrate @ 5702] David Brigada (jsi) writes: " This patch makes it so that your timestamps are the same size as your text. Some people don't like it to be bigger/smaller than their text." committer: Tailor Script diff -r e938119382cf -r 5e1eeeba4e68 src/gtkconv.c --- a/src/gtkconv.c Wed May 07 23:47:34 2003 +0000 +++ b/src/gtkconv.c Thu May 08 02:58:40 2003 +0000 @@ -3965,13 +3965,13 @@ if (flags & WFLAG_SYSTEM) { if (convo_options & OPT_CONVO_SHOW_TIME) - g_snprintf(buf, BUF_LONG, "(%s) %s", + g_snprintf(buf, BUF_LONG, "(%s) %s", mdate, message); else g_snprintf(buf, BUF_LONG, "%s", message); g_snprintf(buf2, sizeof(buf2), - "%s
", + "%s
", mdate, message); gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), buf2, -1, 0); @@ -4090,7 +4090,7 @@ if (convo_options & OPT_CONVO_SHOW_TIME) g_snprintf(buf, BUF_LONG, - "(%s) " + "(%s) " "%s ", color, sml_attrib ? sml_attrib : "", mdate, str); else @@ -4099,7 +4099,7 @@ sml_attrib ? sml_attrib : "", str); g_snprintf(buf2, BUF_LONG, - "" + "" "%s ", color, sml_attrib ? sml_attrib : "", mdate, str);