From 760af376f48a639e129b7057bd51eebe80d2ab10 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 8 Jan 2010 20:16:15 +0100 Subject: [PATCH] [zimio] fix XML console filter. Fixes #4785 --- src/dialogs.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dialogs.py b/src/dialogs.py index fbdad489c..8bc18c7c4 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -2894,7 +2894,6 @@ class XMLConsoleWindow: def on_in_stanza_checkbutton_toggled(self, widget): active = widget.get_active() self.tagIn.set_property('invisible', active) - self.tagInComment.set_property('invisible', active) self.tagInPresence.set_property('invisible', active) self.tagInMessage.set_property('invisible', active) self.tagInIq.set_property('invisible', active) @@ -2907,7 +2906,6 @@ class XMLConsoleWindow: def on_out_stanza_checkbutton_toggled(self, widget): active = widget.get_active() self.tagOut.set_property('invisible', active) - self.tagOutComment.set_property('invisible', active) self.tagOutPresence.set_property('invisible', active) self.tagOutMessage.set_property('invisible', active) self.tagOutIq.set_property('invisible', active)