Temporary fix the short sample not looping from beginning.

This commit is contained in:
apoorv569 2022-03-18 17:37:33 +05:30
parent 165e11ce6f
commit 22f45fbd66
1 changed files with 7 additions and 7 deletions

View File

@ -214,13 +214,13 @@ void cMainFrame::OnMediaFinished(wxMediaEvent& event)
{
if (m_pTransportControls->CanLoop())
{
// FIXME: Temporary fix for the sample not playing from beginning when looping. Might need to change this.
if (m_pMediaCtrl->Stop()) // TODO: <--
if (!m_pMediaCtrl->Play())
{
wxMessageDialog msgDialog(NULL, _("Error! Cannot loop media."), _("Error"), wxOK | wxICON_ERROR);
msgDialog.ShowModal();
}
else
m_pMediaCtrl->Play();
}
else
{