diff options
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/ConditionalWidget.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/python/Components/ConditionalWidget.py b/lib/python/Components/ConditionalWidget.py index eec5b436..9b02f285 100644 --- a/lib/python/Components/ConditionalWidget.py +++ b/lib/python/Components/ConditionalWidget.py @@ -48,11 +48,9 @@ class ConditionalWidget(Widget): def activateCondition(self, condition): if (condition): if (self.state == self.HIDDEN): - print "update: " + str(self) + " SHOW" self.showWidget() else: if (self.state == self.SHOWN): - print "update: " + str(self) + " HIDE" self.hideWidget() def update(self): |
