From 6098c7d13d6dee88ad5a6b3a81ecc609ff964897 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Fri, 27 Oct 2017 22:05:11 +0200 Subject: [PATCH] audioplayer: allow RC_previoussong and RC_nextsong Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/f595d3bd46ede1b9b8bb61b93a42f6f9f1b1f115 Author: vanhofen Date: 2017-10-27 (Fri, 27 Oct 2017) Origin message was: ------------------ - audioplayer: allow RC_previoussong and RC_nextsong ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/audioplayer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/audioplayer.cpp b/src/gui/audioplayer.cpp index f427c249f..c5a0e31a5 100644 --- a/src/gui/audioplayer.cpp +++ b/src/gui/audioplayer.cpp @@ -492,7 +492,7 @@ int CAudioPlayerGui::show() } } } - else if (msg == CRCInput::RC_left) + else if (msg == CRCInput::RC_left || msg == CRCInput::RC_previoussong) { if (m_key_level == 1) { @@ -519,7 +519,7 @@ int CAudioPlayerGui::show() } } - else if (msg == CRCInput::RC_right) + else if (msg == CRCInput::RC_right || msg == CRCInput::RC_nextsong) { if (m_key_level == 1) {