summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2006-02-12 21:54:22 +0000
committerLarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b>2006-02-12 21:54:22 +0000
commit997fc84f0eeaa7709b1e59fc0775dfdad2834010 (patch)
treea8bd6fbb7855445e3e3b6f316be01e605fd89a68
parent7dfb74d77caab8e11cef100bbc9c1ccd228ebc38 (diff)
downloadvdr-plugin-muggle-997fc84f0eeaa7709b1e59fc0775dfdad2834010.tar.gz
vdr-plugin-muggle-997fc84f0eeaa7709b1e59fc0775dfdad2834010.tar.bz2
Updated documentation
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@927 e10066b5-e1e2-0310-b819-94efdf66514b
-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
{