diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-02-24 17:58:42 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-02-24 17:58:42 +0000 |
| commit | 45a8745519c1f7f77ebcbf555e485bdc5a1a5528 (patch) | |
| tree | 06917b4de2eddb694b3df3e781eed506d7de1fe8 /lib/python | |
| parent | 55b9e8af49d4f89639f87f92657975f194b6161d (diff) | |
| download | enigma2-45a8745519c1f7f77ebcbf555e485bdc5a1a5528.tar.gz enigma2-45a8745519c1f7f77ebcbf555e485bdc5a1a5528.zip | |
fix pixmaps
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/MessageBox.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/MessageBox.py b/lib/python/Screens/MessageBox.py index 78224e14..51dd2fb4 100644 --- a/lib/python/Screens/MessageBox.py +++ b/lib/python/Screens/MessageBox.py @@ -25,9 +25,9 @@ class MessageBox(Screen): self.list = [] if type != self.TYPE_ERROR: self["ErrorPixmap"].hide() - elif type != self.TYPE_YESNO: + if type != self.TYPE_YESNO: self["QuestionPixmap"].hide() - elif type != self.TYPE_INFO: + if type != self.TYPE_INFO: self["InfoPixmap"].hide() if type == self.TYPE_YESNO: |
