From 0a6f4799958b2a57c804576728646e9087b5b56c Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Mon, 9 Dec 2019 22:26:27 +0100 Subject: [PATCH] - movieplayer: use RC_tv/radio to toggle infoviewer/epg; ARM/MIPS_HARDWARE only Signed-off-by: Thilo Graf Would like to know why? --- src/gui/movieplayer.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index 12e46039e..e085568fa 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -1984,6 +1984,12 @@ void CMoviePlayerGui::PlayFileLoop(void) callInfoViewer(); update_lcd = true; clearSubtitle(); +#if HAVE_ARM_HARDWARE || HAVE_MIPS_HARDWARE + } else if (msg == CRCInput::RC_tv || msg == CRCInput::RC_radio) { + callInfoViewer(); + update_lcd = true; + clearSubtitle(); +#endif } else if (timeshift != TSHIFT_MODE_OFF && (msg == CRCInput::RC_text || msg == CRCInput::RC_epg || msg == NeutrinoMessages::SHOW_EPG)) { bool restore = FileTimeOSD->IsVisible(); FileTimeOSD->kill();