aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Label.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/Label.py')
-rw-r--r--lib/python/Components/Label.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Components/Label.py b/lib/python/Components/Label.py
index 7402d722..c2d57743 100644
--- a/lib/python/Components/Label.py
+++ b/lib/python/Components/Label.py
@@ -22,3 +22,8 @@ class Label(HTMLComponent, GUIComponent, VariableText):
s = self.instance.calculateSize()
return (s.width(), s.height())
+ def show(self):
+ self.instance.show()
+
+ def hide(self):
+ self.instance.hide()