diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-31 15:10:17 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-31 15:10:17 +0000 |
| commit | 26333622d12f5f959e26164d9889474d7cd1f552 (patch) | |
| tree | 485289f0bf85c16a2f1a281fd767735347b1afd8 /lib/python/Components/config.py | |
| parent | 6a417418c71ac1f8143e130a91ff0e091d3b474e (diff) | |
| download | enigma2-26333622d12f5f959e26164d9889474d7cd1f552.tar.gz enigma2-26333622d12f5f959e26164d9889474d7cd1f552.zip | |
added reload (cancel)
Diffstat (limited to 'lib/python/Components/config.py')
| -rw-r--r-- | lib/python/Components/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 0d1489aa..457736f5 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -11,7 +11,7 @@ class configBoolean: self.parent.value = len(self.parent.vals) - 1 def cancel(self): - print "cancel" + self.parent.reload() def save(self): print "save" @@ -58,7 +58,7 @@ class ConfigSlider: self.parent = parent def cancel(self): - print "slider - cancel" + self.parent.reload() def save(self): print "slider - save" |
