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()) if (m_pTransportControls->CanLoop())
{ {
if (!m_pMediaCtrl->Play()) // FIXME: Temporary fix for the sample not playing from beginning when looping. Might need to change this.
{ if (m_pMediaCtrl->Stop()) // TODO: <--
wxMessageDialog msgDialog(NULL, _("Error! Cannot loop media."), _("Error"), wxOK | wxICON_ERROR); if (!m_pMediaCtrl->Play())
msgDialog.ShowModal(); {
} wxMessageDialog msgDialog(NULL, _("Error! Cannot loop media."), _("Error"), wxOK | wxICON_ERROR);
else msgDialog.ShowModal();
m_pMediaCtrl->Play(); }
} }
else else
{ {