Fixed triggering of stop animation when not playing

This commit is contained in:
Andres
2019-11-17 23:05:16 -03:00
parent e056ecb27b
commit 229de18bc0
2 changed files with 17 additions and 1 deletions

View File

@@ -162,6 +162,11 @@ public:
return "sampletrack";
}
bool wasPlaying()
{
return m_wasPlaying;
}
signals:
void playing();
void notPlaying();
@@ -215,6 +220,7 @@ public:
public slots:
void showEffects();
void stopPlaying();
protected: