don't show empty lines in XML console. fixes #2857
This commit is contained in:
parent
f060342b5e
commit
4bd6253192
|
@ -1764,6 +1764,8 @@ class XMLConsoleWindow:
|
|||
# kind must be 'incoming' or 'outgoing'
|
||||
if not self.enabled:
|
||||
return
|
||||
if not stanza:
|
||||
return
|
||||
|
||||
buffer = self.stanzas_log_textview.get_buffer()
|
||||
at_the_end = False
|
||||
|
|
Loading…
Reference in New Issue