From 5b56308c68406160408c391d7b0f2748679bd58e Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Wed, 7 Dec 2005 16:35:51 +0000 Subject: [PATCH] add an empty line after we print subject --- src/conversation_textview.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/conversation_textview.py b/src/conversation_textview.py index ae1b7df9a..7e9669917 100644 --- a/src/conversation_textview.py +++ b/src/conversation_textview.py @@ -596,6 +596,7 @@ class ConversationTextview(gtk.TextView): subject = _('Subject: %s\n') % subject end_iter = buffer.get_end_iter() buffer.insert(end_iter, subject) + self.print_empty_line() # detect urls formatting and if the user has it on emoticons index = self.detect_and_print_special_text(text, jid, text_tags)