diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-07-05 14:48:42 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2021-07-12 14:00:56 +0200 |
commit | b3e5626b9644b0cb88b4768c0c0c4561788a8a6e (patch) | |
tree | f13410c7d8da89ad048cfb7a45648140c3bf9edc /displaychannelview.c | |
parent | fa4b8d5aea7e196846dc8de594fb2dbdb66aaf8e (diff) | |
download | skin-nopacity-b3e5626b9644b0cb88b4768c0c0c4561788a8a6e.tar.gz skin-nopacity-b3e5626b9644b0cb88b4768c0c0c4561788a8a6e.tar.bz2 |
Add "Use scraper infos and pictures" to setup
With this menu item, the use of scraper information and images can be
switched off centrally.
Diffstat (limited to 'displaychannelview.c')
-rw-r--r-- | displaychannelview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/displaychannelview.c b/displaychannelview.c index daf8c71..34f1727 100644 --- a/displaychannelview.c +++ b/displaychannelview.c @@ -579,7 +579,7 @@ void cNopacityDisplayChannelView::DrawPoster(const cEvent *event, bool initial, } static cPlugin *pScraper = GetScraperPlugin(); - if (pScraper) { + if (pScraper && (config.GetValue("scraperInfo") == 1)) { ScraperGetPosterBanner call; call.event = event; if (pScraper->Service("GetPosterBanner", &call)) { |