diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-02-23 00:57:44 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-02-23 00:57:44 +0000 |
| commit | 25d7d8f83be2c4b4ede842e7311f0162d230b0c2 (patch) | |
| tree | b0ed20a7e358399cb6186f5f9aaeacff0a62c247 /lib/python | |
| parent | 5c190ae9fad609392f8f91ae931168acf862dbd9 (diff) | |
| download | enigma2-25d7d8f83be2c4b4ede842e7311f0162d230b0c2.tar.gz enigma2-25d7d8f83be2c4b4ede842e7311f0162d230b0c2.zip | |
don't set title, because it doesn't work properly
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/PluginBrowser.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py index 86f4a6b9..adec1b6b 100644 --- a/lib/python/Screens/PluginBrowser.py +++ b/lib/python/Screens/PluginBrowser.py @@ -101,10 +101,10 @@ class PluginDownloadBrowser(Screen): self.session.openWithCallback(self.installFinished, Console, ["ipkg remove " + self.pluginlist[self["list"].l.getCurrentSelectionIndex()][0]]) def startRun(self): - if self.type == self.DOWNLOAD: - self.session.currentDialog.instance.setTitle(_("Downloadale new plugins")) - elif self.type == self.REMOVE: - self.session.currentDialog.instance.setTitle(_("Remove plugins")) + #if self.type == self.DOWNLOAD: + # self.session.currentDialog.instance.setTitle(_("Downloadale new plugins")) + #elif self.type == self.REMOVE: + # self.session.currentDialog.instance.setTitle(_("Remove plugins")) self["list"].instance.hide() self.container.execute("ipkg update") |
