diff options
| author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2015-02-06 17:32:07 +0100 |
|---|---|---|
| committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2015-02-06 17:32:07 +0100 |
| commit | c4689790704b2dabf61ed5845c79780653074db5 (patch) | |
| tree | 6cadb101b221a70a7a722423a5459666bdff0fd4 | |
| parent | ec4e5aac8ef082d591e40a43134096d83db296d1 (diff) | |
| download | skin-flatplus-c4689790704b2dabf61ed5845c79780653074db5.tar.gz skin-flatplus-c4689790704b2dabf61ed5845c79780653074db5.tar.bz2 | |
[update] add 15:11 aspect in displaychannel and replay
| -rw-r--r-- | HISTORY | 1 | ||||
| -rw-r--r-- | displaychannel.c | 2 | ||||
| -rw-r--r-- | displayreplay.c | 2 |
3 files changed, 3 insertions, 2 deletions
@@ -11,6 +11,7 @@ VDR Plugin 'skinflatplus' Revision History - [fix] subtitles does not use title - [update] timer widget new options to select which timer to show (recording, active) +- [update] add 15:11 aspect in displaychannel and replay 2014-12-04: Version 0.5.0 - [fix] femon receiver - do not get data from previous channel diff --git a/displaychannel.c b/displaychannel.c index ee4ce3e9..491684a9 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -239,7 +239,7 @@ void cFlatDisplayChannel::ChannelIconsDraw(const cChannel *Channel, bool Resolut asp = "43"; else if( screenAspect == 16.0/9.0 ) asp = "169"; - else if( screenAspect == 20.0/11.0 ) + else if( screenAspect == 20.0/11.0 || screenAspect == 15.0/11.0 ) asp = "169w"; else if( screenAspect == 2.21 ) asp = "221"; diff --git a/displayreplay.c b/displayreplay.c index 427ed852..df8f6b72 100644 --- a/displayreplay.c +++ b/displayreplay.c @@ -488,7 +488,7 @@ void cFlatDisplayReplay::ResolutionAspectDraw(void) { asp = "43"; else if( screenAspect == 16.0/9.0 ) asp = "169"; - else if( screenAspect == 20.0/11.0 ) + else if( screenAspect == 20.0/11.0 || screenAspect == 15.0/11.0 ) asp = "169w"; else if( screenAspect == 2.21 ) asp = "221"; |
