Merge pull request #2675 from Fastigium/deletechannelfix

Fix crashes on deleting an FX channel. Fixes #2667
This commit is contained in:
Fastigium
2016-03-26 09:26:58 +01:00
5 changed files with 18 additions and 12 deletions

View File

@@ -56,7 +56,6 @@ class FxChannel : public ThreadableJob
BoolModel m_soloModel;
FloatModel m_volumeModel;
QString m_name;
QMutex m_lock;
int m_channelIndex; // what channel index are we
bool m_queued; // are we queued up for rendering yet?
bool m_muted; // are we muted? updated per period so we don't have to call m_muteModel.value() twice

View File

@@ -227,6 +227,7 @@ protected slots:
void updateBaseNote();
void updatePitch();
void updatePitchRange();
void updateEffectChannel();
private: