summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.neutrinoepg@schirrmacher.eu>2014-03-22 10:56:15 +0100
committerMartin Schirrmacher <vdr.neutrinoepg@schirrmacher.eu>2014-03-22 10:56:15 +0100
commit4fec4bcb560d4bd1e81585a0a4dfc7c4f31f6863 (patch)
tree4458073831cb62f85117a60374f6926bbde534a2
parent812eaeb5033c3cd349d043d4360c1867b161c263 (diff)
downloadvdr-plugin-neutrinoepg-4fec4bcb560d4bd1e81585a0a4dfc7c4f31f6863.tar.gz
vdr-plugin-neutrinoepg-4fec4bcb560d4bd1e81585a0a4dfc7c4f31f6863.tar.bz2
Wenn ProgressBar eingestellt ist auf Textbalken, nutze für REC und Timer auch "*" "#" anstatt VDRSymbols
-rw-r--r--HISTORY5
-rw-r--r--osditem.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index 0880544..cea6878 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,9 @@
VDR Plugin 'neutrinoepg' Revision History
-2013-21-09: Versioin 0.3.6
+XXXX-XX-XX: Version 0.3.7
+- [fix] Wenn ProgressBar eingestellt ist auf Textbalken, nutze für REC und Timer auch "*" "#" anstatt VDRSymbols
+
+2013-21-09: Version 0.3.6
- [Feature] Unterstützung für Textbalken bei der ProgressBar
2013-29-07: Version 0.3.5
diff --git a/osditem.c b/osditem.c
index dd37c94..8d86f30 100644
--- a/osditem.c
+++ b/osditem.c
@@ -58,7 +58,10 @@ void myOsdItem::Set()
if(ti->Matches(t) && (ti->Channel() == channel))
{
timer = ti;
- m = timer->Recording() ? Icons::Recording() : Icons::AlarmClock();
+ if( progressbar == 1 )
+ m = timer->Recording() ? "*" : "#";
+ else
+ m = timer->Recording() ? Icons::Recording() : Icons::AlarmClock();
}
}