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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Label.py b/lib/python/Components/Label.py
index c4efcda4..730a01e5 100644
--- a/lib/python/Components/Label.py
+++ b/lib/python/Components/Label.py
@@ -30,7 +30,7 @@ class Label(HTMLComponent, GUIComponent, VariableText):
def hide(self):
self.instance.hide()
-class LabelConditional(ConditionalWidget, Label):
+class LabelConditional(Label, ConditionalWidget):
def __init__(self, text = "", withTimer = True):
ConditionalWidget.__init__(self, withTimer = withTimer)
Label.__init__(self, text = text) \ No newline at end of file