diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2009-02-19 13:29:45 +0100 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2009-02-19 13:29:45 +0100 |
| commit | 6bb47ff06e84149578671195a702e22ada245d37 (patch) | |
| tree | 44a59f1e8458b32c687a709080ac3fc164822054 /lib/python | |
| parent | 9208ede8da1fd495eafc24b9dd2d75d84f8a5952 (diff) | |
| download | enigma2-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')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDPlayer/plugin.py | 2 |
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) |
