diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-05-30 11:41:19 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-05-30 11:42:02 +0200 |
commit | b55994a8a62b22ae3583e523c411f0bf4ffa0185 (patch) | |
tree | d3e8bb37dda5a6a29540e629a2eab7924c237de0 /coreengine | |
parent | b47f544ad5c9c7d8a9588d1fcc1d2dd7482949fc (diff) | |
download | vdr-plugin-skindesigner-b55994a8a62b22ae3583e523c411f0bf4ffa0185.tar.gz vdr-plugin-skindesigner-b55994a8a62b22ae3583e523c411f0bf4ffa0185.tar.bz2 |
Fix display of the background in the display channel
If you enter the display channel in Zapcockpit mode with the right or
left button and exit with OK, the background of the display channel was
not displayed.
Diffstat (limited to 'coreengine')
-rw-r--r-- | coreengine/viewdisplaychannel.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/coreengine/viewdisplaychannel.c b/coreengine/viewdisplaychannel.c index 0a9b8aa..d4af382 100644 --- a/coreengine/viewdisplaychannel.c +++ b/coreengine/viewdisplaychannel.c @@ -423,6 +423,7 @@ void cViewChannel::ClearExtended(void) { Clear((int)eVeDisplayChannel::channellistdetail); SetDirty((int)eVeDisplayChannel::channellistback); initExtended = true; + init = true; ShowBasic(); } //exit from channellist info to channel list @@ -436,6 +437,7 @@ void cViewChannel::ClearExtended(void) { Clear((int)eVeDisplayChannel::grouplistback); SetDirty((int)eVeDisplayChannel::grouplistback); initExtended = true; + init = true; ShowBasic(); } //exit from group channel list to group list @@ -460,6 +462,7 @@ void cViewChannel::ClearExtended(void) { SetDirty((int)eVeDisplayChannel::grouplistback); SetDirty((int)eVeDisplayChannel::groupchannellistdetail); initExtended = true; + init = true; ShowBasic(); } //exit from channel info to channel or group list |