diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-07-08 16:41:35 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-07-08 16:41:35 +0000 |
| commit | 98c4b5bb004e9297bffa8e1c3572572741fda933 (patch) | |
| tree | fcd68e1dc4f97d0778348ae54e637368a80186ae /lib/python/Components/Button.py | |
| parent | db493da3936b21410730a1c299b4c6937d56ca4e (diff) | |
| download | enigma2-98c4b5bb004e9297bffa8e1c3572572741fda933.tar.gz enigma2-98c4b5bb004e9297bffa8e1c3572572741fda933.zip | |
- skins are now loaded first and applied later
- this allows use skin information to build special eWidgets, depending on skin
- add "applet"-feature: code which is executed from skin
- example: centering of messagebox
Diffstat (limited to 'lib/python/Components/Button.py')
| -rw-r--r-- | lib/python/Components/Button.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Button.py b/lib/python/Components/Button.py index d773b2c1..d9226b6d 100644 --- a/lib/python/Components/Button.py +++ b/lib/python/Components/Button.py @@ -29,7 +29,7 @@ class Button(HTMLComponent, GUIComponent, VariableText): return "<input type=\"submit\" text=\"" + self.getText() + "\">\n" # GUI: - def createWidget(self, parent, skindata): + def createWidget(self, parent): g = eButton(parent) g.selected.get().append(self.push) return g |
