aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2009-02-19 13:29:45 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2009-02-19 13:29:45 +0100
commit6bb47ff06e84149578671195a702e22ada245d37 (patch)
tree44a59f1e8458b32c687a709080ac3fc164822054 /lib/python/Plugins/Extensions
parent9208ede8da1fd495eafc24b9dd2d75d84f8a5952 (diff)
downloadenigma2-6bb47ff06e84149578671195a702e22ada245d37.tar.gz
enigma2-6bb47ff06e84149578671195a702e22ada245d37.zip
always show option to open file browser in exit dialoge (also when playing from actual dvd medium)
Diffstat (limited to 'lib/python/Plugins/Extensions')
-rw-r--r--lib/python/Plugins/Extensions/DVDPlayer/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py
index 8e2a9f3a..6a8ffc6f 100644
--- a/lib/python/Plugins/Extensions/DVDPlayer/plugin.py
+++ b/lib/python/Plugins/Extensions/DVDPlayer/plugin.py
@@ -511,7 +511,7 @@ class DVDPlayer(Screen, InfoBarBase, InfoBarNotifications, InfoBarSeek, InfoBarP
def askLeavePlayer(self):
choices = [(_("Exit"), "exit"), (_("Continue playing"), "play")]
- if not self.physicalDVD:
+ if True or not self.physicalDVD:
choices.insert(1,(_("Return to file browser"), "browser"))
self.session.openWithCallback(self.exitCB, ChoiceBox, title=_("Leave DVD Player?"), list = choices)