From a1c5e1be05a5f0f2651b5c5dd55b16e2d579635c Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 5 Mar 2019 21:50:03 +0100 Subject: [PATCH] channellist: show event description in primetime mode Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/b8816141e24357aa041d558da4186847c6039790 Author: vanhofen Date: 2019-03-05 (Tue, 05 Mar 2019) Origin message was: ------------------ - channellist: show event description in primetime mode ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/channellist.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 9a579cefc..c6b845aeb 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -870,6 +870,13 @@ int CChannelList::show() if (displayMode == DISPLAY_MODE_MAX) displayMode = DISPLAY_MODE_NOW; + if (g_settings.channellist_additional) + { + // show event description in primetime mode + if (displayMode == DISPLAY_MODE_PRIME) + descMode = true; + } + paint(); } }