Skip to content

Commit

Permalink
Fixes crash when connecting to SubChannels node
Browse files Browse the repository at this point in the history
  • Loading branch information
azeno committed Dec 10, 2024
1 parent b44efda commit bb73f52
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/EffectHost.Reflection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using System.Runtime.CompilerServices;
using VL.Audio.VST.Internal;
using VL.Core;
using VL.Core.CompilerServices;
using VL.Core.Reactive;
using VL.Lib.Collections;
using VST3;
Expand All @@ -26,8 +27,8 @@ partial class EffectHost : IVLObject, INotifyPropertyChanged
LoadProperties = typeInfo => LoadProperties(typeInfo, this)
};


event PropertyChangedEventHandler? INotifyPropertyChanged.PropertyChanged
[Smell(SymbolSmell.Internal)]
public event PropertyChangedEventHandler? PropertyChanged
{
add => propertyChanged += value;
remove => propertyChanged -= value;
Expand Down

0 comments on commit bb73f52

Please sign in to comment.