diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-08-17 20:52:48 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-10-06 23:07:40 +0200 |
| commit | 60e2dcb19baa37753d189fccabeae9b3a5e037fb (patch) | |
| tree | 9d8de543ba2c85b75535e23de0c8809434d308b2 /lib/python/Screens | |
| parent | 15a99c0b5ac80d52889874af65f9887aabca11b4 (diff) | |
| download | enigma2-60e2dcb19baa37753d189fccabeae9b3a5e037fb.tar.gz enigma2-60e2dcb19baa37753d189fccabeae9b3a5e037fb.zip | |
JobView/HTTPProgressDownloader/NFIFlash correctly handle cancelling downloads
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/TaskView.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/TaskView.py b/lib/python/Screens/TaskView.py index 9907e2fb..0b5abcc0 100644 --- a/lib/python/Screens/TaskView.py +++ b/lib/python/Screens/TaskView.py @@ -114,7 +114,7 @@ class JobView(InfoBarNotifications, Screen, ConfigListScreen): if self.settings.afterEvent.getValue() == "nothing": return elif self.settings.afterEvent.getValue() == "close": - self.abort() + self.close(False) from Screens.MessageBox import MessageBox if self.settings.afterEvent.getValue() == "deepstandby": if not Screens.Standby.inTryQuitMainloop: |
