always show option to open file browser in exit dialoge (also when playing from actua...
[enigma2.git] / lib / python / Plugins / Extensions / DVDPlayer / plugin.py
index 8e2a9f3a75d242beee20177129d68f2f247b8434..6a8ffc6ff7249c09a9283e2edbc48e4fd487f999 100644 (file)
@@ -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)