src/gui/audioplayer.cpp: add missing 'else'

Comes in with picked commit 0d0553a639
Original commit was noiseless deleted and its content was replaced.
This commit is contained in:
2018-01-27 15:23:45 +01:00
parent e6edf50673
commit c1a3f02dad

View File

@@ -449,7 +449,7 @@ int CAudioPlayerGui::show()
if (m_state == CAudioPlayerGui::STOP)
loop=false;
}
if (msg == CRCInput::RC_stop)
else if (msg == CRCInput::RC_stop)
{
if (m_state != CAudioPlayerGui::STOP)
stop();