aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDPlayer/plugin.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-19 13:58:04 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-19 13:58:04 +0100
commita568c76b75e987a33d2f7a65aa483447cf55e442 (patch)
treee30718db77b8e6bb8e57a82500fb20e4f35bb43a /lib/python/Plugins/Extensions/DVDPlayer/plugin.py
parent0abd3c974bc5f2c79948972a3f10f6c968e42016 (diff)
parent6bb47ff06e84149578671195a702e22ada245d37 (diff)
downloadenigma2-a568c76b75e987a33d2f7a65aa483447cf55e442.tar.gz
enigma2-a568c76b75e987a33d2f7a65aa483447cf55e442.zip
Merge branch 'master' of /home/tmbinc/enigma2-git
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDPlayer/plugin.py')
-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)