CMessageBox: ignore mute button for message boxes

In some constellations it's possible that mute button is passed.
For example see deleting functionality in moviebrowser.
This should avoid unintended passing.


Origin commit data
------------------
Commit: 62861c5f96
Author: Thilo Graf <dbt@novatux.de>
Date: 2016-04-15 (Fri, 15 Apr 2016)
This commit is contained in:
2016-04-15 22:07:04 +02:00
parent 88622a07b4
commit af85ced50c

View File

@@ -271,7 +271,7 @@ int CMessageBox::exec(int timeout)
{
loop = false;
}
else if((msg == CRCInput::RC_sat) || (msg == CRCInput::RC_favorites) || (msg == CRCInput::RC_www) || (msg == CRCInput::RC_spkr) )
else if((msg == CRCInput::RC_sat) || (msg == CRCInput::RC_favorites) || (msg == CRCInput::RC_www) || (msg == CRCInput::RC_spkr))
{
}
else if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all)