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'
|
# kind must be 'incoming' or 'outgoing'
|
||||||
if not self.enabled:
|
if not self.enabled:
|
||||||
return
|
return
|
||||||
|
if not stanza:
|
||||||
|
return
|
||||||
|
|
||||||
buffer = self.stanzas_log_textview.get_buffer()
|
buffer = self.stanzas_log_textview.get_buffer()
|
||||||
at_the_end = False
|
at_the_end = False
|
||||||
|
|
Loading…
Reference in New Issue