Add "Remove unused channels" option to FX-Mixer

This makes it easier to delete all FX-Channels that are not in use.
This commit is contained in:
Daniel Winzen
2015-01-02 21:40:49 +01:00
parent 22c31008d4
commit 4043868992
4 changed files with 50 additions and 2 deletions

View File

@@ -73,6 +73,7 @@ private:
private slots:
void renameChannel();
void removeChannel();
void removeUnusedChannels();
void moveChannelLeft();
void moveChannelRight();
void displayHelp();

View File

@@ -92,6 +92,9 @@ public:
// notify the view that an fx channel was deleted
void deleteChannel(int index);
// delete all unused channels
void deleteUnusedChannels();
// move the channel to the left or right
void moveChannelLeft(int index);
void moveChannelRight(int index);