summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY3
-rw-r--r--vdr_menu.c21
2 files changed, 14 insertions, 10 deletions
diff --git a/HISTORY b/HISTORY
index 04e75e6..ae0ed8a 100644
--- a/HISTORY
+++ b/HISTORY
@@ -279,3 +279,6 @@ XXXXXXXXXX: Version 0.0.8-ALPHA
- Import: If a file is known to exist but cannot be read, do not import but
issue warning
- mugglei: better handling of wrong arguments
+- Corrected labeling of setup options
+- Restored link to send cover images to graphtft
+- Resolved a problem that prevented starting muggle when a channel with dolby digital is active \ No newline at end of file
diff --git a/vdr_menu.c b/vdr_menu.c
index 0603046..583b9ba 100644
--- a/vdr_menu.c
+++ b/vdr_menu.c
@@ -835,17 +835,18 @@ eOSState mgMainMenu::ProcessKey (eKeys key)
mgPlayerControl * c = PlayerControl ();
if (c)
{
- if (!c->Playing ())
+ if (!c->Playing ())
{
- c->Shutdown ();
- if (instant_playing && queue_playing) {
- PlayQueue();
- }
- else
- {
- instant_playing = false;
- queue_playing = false;
- }
+ c->Shutdown();
+ if (instant_playing && queue_playing)
+ {
+ PlayQueue();
+ }
+ else
+ {
+ instant_playing = false;
+ queue_playing = false;
+ }
}
else
{