diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-10-07 12:40:41 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-10-07 12:40:41 +0000 |
| commit | 90ae5b35bc948a6738d3ef9c9bc0a6885e48d756 (patch) | |
| tree | 39828d3933dadadaca7a9fe72904f72e9101ce50 /lib/python/Plugins | |
| parent | ce35a67b836aa6d6a76ee2e7f7075d09d7af611d (diff) | |
| download | enigma2-90ae5b35bc948a6738d3ef9c9bc0a6885e48d756.tar.gz enigma2-90ae5b35bc948a6738d3ef9c9bc0a6885e48d756.zip | |
fix priorities
Diffstat (limited to 'lib/python/Plugins')
| -rw-r--r-- | lib/python/Plugins/Extensions/FritzCall/plugin.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/python/Plugins/Extensions/FritzCall/plugin.py b/lib/python/Plugins/Extensions/FritzCall/plugin.py index 56e04dce..631cb4c0 100644 --- a/lib/python/Plugins/Extensions/FritzCall/plugin.py +++ b/lib/python/Plugins/Extensions/FritzCall/plugin.py @@ -1,6 +1,6 @@ from Screens.Screen import Screen from Screens.MessageBox import MessageBox -from Components.ActionMap import NumberActionMap +from Components.ActionMap import ActionMap from Components.Label import Label from Plugins.Plugin import PluginDescriptor from Tools import Notifications @@ -39,13 +39,14 @@ class FritzCallSetup(ConfigListScreen, Screen): self.list.append(getConfigListEntry(_("Fritz!Box FON IP address"), config.FritzCall.hostname)) ConfigListScreen.__init__(self, self.list) - # DO NOT ASK. - self["setupActions"] = NumberActionMap(["SetupActions"], + # DO NOT ASK. + self["setupActions"] = ActionMap(["SetupActions"], { "save": self.save, "cancel": self.cancel, "ok": self.save, - }, -1) + }, -2) + def abort(self): print "aborting" |
