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 /textwindow.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 'textwindow.c')
-rw-r--r-- | textwindow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textwindow.c b/textwindow.c index 0849305..4427d94 100644 --- a/textwindow.c +++ b/textwindow.c @@ -85,7 +85,7 @@ void cNopacityTextWindow::SetPoster(const cEvent *event, const cRecording *recor posterHeight = 0; posterWidth = 0; static cPlugin *pScraper = GetScraperPlugin(); - if (pScraper) { + if (pScraper && (config.GetValue("scraperInfo") == 1)) { posterScraper2Vdr.event = event; posterScraper2Vdr.recording = recording; if (pScraper->Service("GetPoster", &posterScraper2Vdr)) { |