diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-08-17 20:52:48 +0200 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-08-17 20:52:48 +0200 |
| commit | 892a18f6926fa4711d17a2e0442b293467e8963c (patch) | |
| tree | c96a496dddc1a539801192df054affff02af052f /lib/python/Screens | |
| parent | be0859d12ff4d1f68407d1b3b0423ecaf2c693ac (diff) | |
| download | enigma2-892a18f6926fa4711d17a2e0442b293467e8963c.tar.gz enigma2-892a18f6926fa4711d17a2e0442b293467e8963c.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 633aae0d..78648602 100644 --- a/lib/python/Screens/TaskView.py +++ b/lib/python/Screens/TaskView.py @@ -118,7 +118,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: |
