Don’t put newlines between xml stanzas in the xml tab

This commit is contained in:
mathieui 2014-12-07 22:59:50 +01:00
parent 148451c774
commit 2e46a93215
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -1117,7 +1117,7 @@ def outgoing_stanza(self, stanza):
if self.xml_tab:
if PYGMENTS:
xhtml_text = highlight('%s' % stanza, LEXER, FORMATTER)
poezio_colored = xhtml.xhtml_to_poezio_colors(xhtml_text, force=True)
poezio_colored = xhtml.xhtml_to_poezio_colors(xhtml_text, force=True).rstrip('\x19o').strip()
else:
poezio_colored = '%s' % stanza
self.add_message_to_text_buffer(self.xml_buffer, poezio_colored,
@ -1140,7 +1140,7 @@ def incoming_stanza(self, stanza):
if self.xml_tab:
if PYGMENTS:
xhtml_text = highlight('%s' % stanza, LEXER, FORMATTER)
poezio_colored = xhtml.xhtml_to_poezio_colors(xhtml_text, force=True)
poezio_colored = xhtml.xhtml_to_poezio_colors(xhtml_text, force=True).rstrip('\x19o').strip()
else:
poezio_colored = '%s' % stanza
self.add_message_to_text_buffer(self.xml_buffer, poezio_colored,