Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use deleteLater() on the FxLine when deleting a channel to prevent a …
…crash In Qt, it is not safe to delete a QObject inside a signal emitted by that QObject. This happened with FxLine when removing an FX channel using the context menu. This commit changes that by using deleteLater() instead of delete on the FxLine. It also hides the FxLine to prevent a ghost of it being drawn when deleting the last non-master FX channel.
- Loading branch information