From 940fdf36fd913de47192cff160ce1fe0997bbaf2 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 24 Sep 2017 22:17:21 +0200 Subject: [PATCH] epgview: swap RC_info and RC_help in EPG view this restores old behaviour of RC_info toggling big fonts. RC_help toggles TMDB display (which is disabled by default anyway) --- src/gui/epgview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/epgview.cpp b/src/gui/epgview.cpp index f2d5d4adb..2cab74547 100644 --- a/src/gui/epgview.cpp +++ b/src/gui/epgview.cpp @@ -1108,7 +1108,7 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start printf("timerd not available\n"); } break; - case CRCInput::RC_info: + case CRCInput::RC_help: { if (g_settings.tmdb_enabled) { @@ -1191,7 +1191,7 @@ int CEpgData::show(const t_channel_id channel_id, uint64_t a_id, time_t* a_start } break; } - case CRCInput::RC_help: + case CRCInput::RC_info: bigFonts = bigFonts ? false : true; ResetModules(); frameBuffer->paintBackgroundBoxRel(sx, sy, ox, oy);