git.cweiske.de
/
enigma2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d27b9f
)
prevent bluescreen happening when trying to set the progess slider with
author
Stefan Pluecken
<
[email protected]
>
Wed, 21 Feb 2007 18:29:28 +0000
(18:29 +0000)
committer
Stefan Pluecken
<
[email protected]
>
Wed, 21 Feb 2007 18:29:28 +0000
(18:29 +0000)
no progress points set by initializing the sliderPackages attribute
with an empty dict
lib/python/Screens/Ipkg.py
patch
|
blob
|
history
diff --git
a/lib/python/Screens/Ipkg.py
b/lib/python/Screens/Ipkg.py
index af80e00081ffc8ea7aeecbff890207d520452dc8..07a7eca4e3f631a110c3f284a0bf391900ec4ac4 100644
(file)
--- a/
lib/python/Screens/Ipkg.py
+++ b/
lib/python/Screens/Ipkg.py
@@
-10,6
+10,8
@@
class Ipkg(Screen):
Screen.__init__(self, session)
self.cmdList = cmdList
+
+ self.sliderPackages = {}
self.slider = Slider(0, len(cmdList))
self["slider"] = self.slider