From: Fraxinas Date: Thu, 19 Feb 2009 12:29:45 +0000 (+0100) Subject: always show option to open file browser in exit dialoge (also when playing from actua... X-Git-Tag: 2.6.0~414^2^2 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/6bb47ff06e84149578671195a702e22ada245d37 always show option to open file browser in exit dialoge (also when playing from actual dvd medium) --- 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)