Snapcast text notify working

This commit is contained in:
2021-08-20 18:26:32 +02:00
parent 60ca1b6e9a
commit 89ddb81840
2 changed files with 14 additions and 3 deletions

View File

@ -33,7 +33,7 @@ namespace unison
CanExecuteFunc = () => true
};
public static string SnapcastText
public string SnapcastText
{
get
{
@ -75,7 +75,7 @@ namespace unison
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
public virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}