Don’t put newlines between xml stanzas in the xml tab
This commit is contained in:
parent
148451c774
commit
2e46a93215
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue